Arrow - Top Navigation Dropdown

Hello!

Is it possible to get an arrow on your Dropdown like this? https://www.churchofthehighlands.com/

Hi Gordon,

Thank you for reaching out to us. Yes you can do this with custom CSS, try adding the following code in the Theme Options > CSS:

.sub-menu.x-dropdown:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -10px;
    left: calc(50% - 30px);
    z-index: 9999;
}

To learn more about CSS triangles please check out https://css-tricks.com/snippets/css/css-triangle/ Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.