Hello!
Our page is www.holycup.lt
How it would be possible to change the font of navigation on mobile? The font on desktop and mobile differs at the moment and we want to have them unified.
Thanks!
Hello!
Our page is www.holycup.lt
How it would be possible to change the font of navigation on mobile? The font on desktop and mobile differs at the moment and we want to have them unified.
Thanks!
Hey @manter
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT
If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hey @manter ,
Add Custom CSS,
Follow these steps:
Online Store
Themes
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
/* Unify mobile menu font with desktop */
.mobile-nav a,
.mobile-nav span {
font-family: 'YourDesktopFontName', sans-serif !important;
font-size: 16px !important; /* match this to your desktop if needed */
font-weight: normal !important; /* or bold if desktop uses that */
}
Replace ‘YourDesktopFontName’ with the font used on desktop (check in your desktop CSS which font is being used for navigation).
Best,
Rajat
Shopify Expert