Mobile menu typography

Mobile menu typography

valeriashapes
Excursionist
48 0 8

Hello Experts,

 

Someone can help me with the typography of mobile menu? I've set a Muli font for headings and navigation and from desktop I can see it but from mobile I see another font. Broadcast theme. 

 

website: www.shapesdecor.com

 

Thank you! 

Replies 5 (5)

topnewyork
Astronaut
1368 165 224

Hello, @valeriashapes 
1) Go to Online Store
2) Edit Code
3) Find theme.css/base.css file
4) Add the following code in the bottom

 

@media (max-width: 768px){
  font-family: Muli, sans-serif !important;
}

@media (min-width: 769px) {
  font-family: Muli, sans-serif !important;
}

 

 Thanks! 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
valeriashapes
Excursionist
48 0 8

Hello there,

 

I think that if better if set a code that says the mobile menu should be the same heading font, so I can change it automatically, now it's set to body font!

 

Thank you

topnewyork
Astronaut
1368 165 224
@media only screen and (max-width: 768px) {
  font-family: Arial, sans-serif; /* change font family as per your choice */
}
Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

rajweb
Shopify Partner
825 71 155

Hey @valeriashapes ,

To fix the mobile font issue:

1. Ensure the Muli font is correctly loaded in your CSS.

2. Add this CSS for the mobile menu:

@media (max-width: 768px){
  font-family: Muli, sans-serif !important;
}

@media (min-width: 769px) {
  font-family: Muli, sans-serif !important;
}

 

 

Add the CSS in your Shopify theme by:

Edit Code: Go to Online Store > Themes > Actions > Edit Code. Open assets/theme.css or style.css and paste your CSS at the bottom.

 

Result:

rajweb_0-1735905041431.png

If I was able to help you, please don't forget to Like and mark it as the Solution!
If you’re looking for expert help with customization or coding, I’d be delighted to support you. Please don’t hesitate to reach out via the email in my signature below—I’m here to help bring your vision to life!

Best Regard,
Rajat Sharma

Rajat | Shopify Expert Developer
Need a reliable Shopify developer for your next project?
Our App: Productify Groups App
Email: rajat.shopify@gmail.com
Portfolio: https://rajatweb.dev
valeriashapes
Excursionist
48 0 8

Hello Rajat,

 

I think that if better if set a code that says the mobile menu should be the same heading font, so I can change it automatically, now it's set to body font!

 

Thank you