Hi,
It’s possible to change the background.
#mobile-advanced .sub-menu li {
background: red;
}
We can add a “+” symbol but it won’t animate or change on click.
#mobile-advanced > .menu-item-has-children > a:before {
content: '+';
position: absolute;
font-size: 12px;
}
Best regards,
Ismael
Hello Ismael,
Thanks it works but if I want to change the font size, how can I do that?
Thanks!
Hi,
Add the font-size property inside this css declaration.
#mobile-advanced .sub-menu li {
background: red;
}
Best regards,
Ismael
Hello Ismael,
As I understand I have to insert some kind of code into quick css for that to be able to change the font size of the mobile menu?
Thanks.
Hello Ismael,
Do you mean, that I need to add a code like this:
#mobile-advanced .sub-menu li {
font-size: 25px;
}
I tried and it did not give me the bigger font.
Hi,
I’m sorry but this thread is becoming a bit too long. Please create a new post for new inquiries. And to answer your previous question, yes, you need to add the font-size property.
#mobile-advanced .sub-menu li {
font-size: 25px !important;
}
The “!important” attribute might help.
Best regards,
Ismael