Archived topic
How can I target Off-Canvas menu items?
3 replies · Started by Andy on September 8, 2020
Hi there,
I’d like to increase the font size of my menu items *without* changing the font size of my menu icon (sitting in header).
How do I target the items here exclusively:
https://imgur.com/a/AwEbGo8
Thanks!
Hi Andy,
You can try this CSS code:
.slideout-navigation.main-navigation .main-nav ul li a {
font-size: 30px;
}
and if you want something different for mobile, you'll have to use @media (max-width:768px){} which will look something like this:
@media (max-width:768px){
.slideout-navigation.main-navigation .main-nav ul li a {
font-size: 17px;
}
}
Let us know if this works for you.
Perfect thanks Elvin!
Nice one!
No problem. :)