Site logo

Archived topic

Font size in secondary nav on mobile

2 replies · Started by Mark on June 10, 2020

Viewing posts 1–3 of 3

I'm trying to increase the font size on the secondary nav when viewed on mobile. I want the text size to be 22px on mobile.

Typography > Primary Navigation has font size options for different device sizes. Awesome!
Typography > Secondary Navigation doesn't have font size options for different device sizes.

I can't quite figure out the CSS for the secondary nav on mobile. Would appreciate help with this.

Thanks.

I found the answer. Thanks.

/* make secondary nav text larger on mobile */

@media (max-width:768px) {
.secondary-navigation .main-nav ul li a {
font-size: 22px;
}
}

Glad you've figured out :)

This archived topic is closed to new replies.