Mobile Menu Font Size
The Library of Code is a compilation of different bits of html, CSS and Javascript that I’ve used in my own web design. Rather than keeping the links from creators all over the internet stored locally I thought I’d share them instead! Keep these at hand by subscribing to the foubography rss feed or head to foubography’s instagram and save the posts.
Squarespace 7.1 doesn’t allow editing the mobile menu font size yet, but this little bit of code lets you do it anyway!
Just paste this bit of code in Design > Custom CSS and adjust accordingly.
@media screen and (max-width: 767px) {
.header-menu-nav-item a {
font-size: 20px;
font-weight: 300;
}
Keep in mind that the above code is using px which is an absolute unit and will not be mobile responsive. Read more about using different sizing units and when to use them here.