Site logo

Archived topic

Remove arrow dropdown icon for sub menus

5 replies · Started by John on July 6, 2022

Viewing posts 1–6 of 6

Hi there,

How can I remove the dropdown icon arrow to show there are sub menus?
I can apply this css

@media (min-width: 1060px) {
.menu-item-has-children .dropdown-menu-toggle {
	display: none;
}
}

But then it skews the way the menus space - making them uneven/irregular vs those that don't have dropdowns.
Any optiosn for this?

Thanks!

Thank you for sharing the link to your site!

Here’s a CSS you may try adding through Appearance > Customize > Additional CSS:

@media (min-width: 1025px) {
    .menu-item-has-children .dropdown-menu-toggle {
        display:none;
    }

    .main-navigation .main-nav ul li.menu-item-has-children>a {
        padding-right: 8px;
    }
}

Hope this helps!

Beautiful - thank you Fernando!

You’re welcome John!

This archived topic is closed to new replies.