• Resolved alextmfk

    (@alextmfk)


    Hey there!

    I know that this question has been answered a hundred times but it simply doesn’t work for me:

    I use a child-theme of 2019 and want to get rid of the arrow that indicates a sub-menu.

    In the original stylesheet is:

     .main-navigation .sub-menu > li.menu-item-has-children .menu-item-has-children > a:after {
        content: "\203a";
      }
    

    and i changed it first to display: ""; and when that didn’t work to content: none;

    I’d love some advice.

    Thanks very much, Alex

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • I understand it is this piece of code:

    
    .main-navigation .main-menu > li.menu-item-has-children .submenu-expand svg {
        position: relative;
        top: 0.2rem;
    }
    

    change to:

    
    .main-navigation .main-menu > li.menu-item-has-children .submenu-expand svg {
        display: none;
    }
    
    Thread Starter alextmfk

    (@alextmfk)

    Thank you very much! That works. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Nav Menu Remove drop down arrow’ is closed to new replies.