I have done this in the past without much trouble but can’t get it working now. I searched for some solutions to try css on the help forum but couldn’t find anything that worked.
1) On the mobile menu, I would like to hide the arrows next to the links. I have tried a few ways to hide .avia-menu-fx but can’t get them to go away.
2) I want to control the logo size. No matter what I do it stays 80px tall. I can stretch it wider but no luck controlling the size any better.
Hey hmsvictory,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Sure.
I ended up using an alternate mobile logo to work around the sizing issue. But still struggling with hiding the menu arrows.
.avia-menu-fx .avia-arrow-wrap, .avia-menu-fx, .avia-arrow {display: none !important;}
/* RESPONSIVE */
@media only screen and (max-width: 767px) {
.responsive #top .logo {padding: 10px 0px 0px 0px;}
.content, .sidebar {padding-top: 20px;}
.logo img {opacity: 0;}
.logo a { background-image: url("mobile-logo.png"); background-size: contain; background-repeat: no-repeat; background-position: 0px 50%; }
}
Hey!
Looks like the arrows are not coming from enfolds avia-menu-fx
please add the below code to Enfold > General Styling > Quick CSS
#mobile-advanced a:before {
display: none!important;
}
Cheers!
Vinay Kashyap
Thank you, that selector worked.