Hi
How can I change the font size of the menu?
I tried to go Themes Customize - Theme setting - Typography, but only could change the font rather than the size.
Need help if anyone allows.
My web is: www.easypack.nz
Theme is Jumpstart
Aaron
Hi
How can I change the font size of the menu?
I tried to go Themes Customize - Theme setting - Typography, but only could change the font rather than the size.
Need help if anyone allows.
My web is: www.easypack.nz
Theme is Jumpstart
Aaron
Hello Aaronwoo,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid
.site-nav li {
font-size: 20px!important;
}
Hello @Aaronwoo ,
Needs to do just css. For it, it requires CSS knowledge. If you are not familiar with how Shopify and its themes are working, you probably contact to an expert.
Thanks.
Thanks for the big help ~!!
Please add the following code at the bottom of your assets/theme.scss.liquid file.
.site-header--drawer .nav-bar li>.site-nav__link{
font-size: 18px !important;
}
You can change the font size as per your need above.
Thanks!