[Resolved] removing arrows from main navigation menu

Home Forums Support [Resolved] removing arrows from main navigation menu

Home Forums Support removing arrows from main navigation menu

  • This topic has 7 replies, 3 voices, and was last updated 2 years ago by David.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #360993
    mike

    hello,

    how do i remove the expand arrows from the primary nav bar?

    thank u

    #360997
    David
    Staff
    Customer Support

    I use the following CSS to remove the carat symbols from the primary Nav. The second half of the code is used to add padding to make-up for the missing symbols to re-center your menu names.

    .menu-item-has-children .dropdown-menu-toggle {
        display: none;
    }
    .main-navigation .main-nav ul li.menu-item-has-children > a {
        padding-right: 30px;
    }

    Adding CSS to GeneratePress

    #361000
    mike

    works like a charm 😉

    thank you

    #361002
    David
    Staff
    Customer Support

    Your welcome

    #2182358
    kernfunke

    Hi David,
    this post was really helpful. Thanks a lot.

    Just one more question to this:
    How can I remove the arrows in the top menu but still have the arrows for the submenu activated?

    Thank you for your help!

    #2182382
    Ying
    Staff
    Customer Support

    Hi there,

    Try change this CSS:

    .menu-item-has-children .dropdown-menu-toggle {
        display: none;
    }

    to:

    .main-navigation .main-nav > ul >li.menu-item-has-children  .dropdown-menu-toggle {
        display: none;
    }
    #2195946
    kernfunke

    Hi Ying,

    sorry but it didn’t work. Any other suggestion or ideas?

    #2195951
    David
    Staff
    Customer Support

    Hi there,

    can you raise a new topic where you will have access to the Private Information field, and in that share a link to your site so we can see whats going on

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