Tagged: fullwidth submenu, menu arrows
I have a fullwidth submenu on the page below, but on mobile am seeing this:
instead of this:
how do I get the arrows to display properly?
thanks
Nancy
Hi Munford!
I cannot see fullwidth submenu on your page. Can you please check the link once again?
Best regards,
Yigit
sorry this one
Is there a way to have that menu sticky on mobile?
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before {
content: "\25BA";
}
Best regards,
Yigit
got better arrows but they are a little smashed.
and now they are showing up in my fullwidth submenu on pc
added the media query:
@media only screen and (max-width: 990px) {
but the arrows are still on the menu.
?
Hi,
They do not show up on my end :/
You can add following code to simply remove arrows
.responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before {
display: none !important;
}
Best regards,
Yigit
I think the media query worked but I will try your code. Thanks.