[Resolved] show sub-menu arrow

Home Forums Support [Resolved] show sub-menu arrow

Home Forums Support show sub-menu arrow

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #138010
    Qi

    Hello,

    I have disable the arrow on main (all) menu by adding:


    @media
    ( min-width: 768px ) {
    .sf-menu li a::after {
    display: none;
    }
    .sf-menu > li a {
    padding-right: 1.5em !important;
    }
    }

    but how can I show an arrow in the item of main dropdown menu to indicate that there is submenu?

    i.e. No arrow on main menu, but on submenu

    #138049
    Tom
    Lead Developer
    Lead Developer

    Give this a try (instead of the above):

    @media ( min-width: 768px ) {
        .sf-menu > li > a::after {
            display: none;
        }
        .sf-menu > li > a {
            padding-right: 1.5em !important;
        }
    }
    #138113
    Qi

    Thank you Tom!
    It worked as expected! Thanks for your work.

    #138144
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.