Change Menu's Font Weight

Solved

Change Menu's Font Weight

martujv
Trailblazer
234 2 46

Hello, folks!

 

I want to change the main menu's font weight (both on desktop and mobile).

I attach an image:

 Captura de pantalla 2025-01-03 a las 14.29.33.png

For the headers, I have a Semi Bold font but for everything else the font weight is normal. However, the main menu's texts are also in normal weight and they seem to be very thin.

 

I would like to have the main menu's texts to be in Semi Bold too, like the the rest of the headers.

 

My theme is Stiletto and my website is: https://4svxm0n5yawy71pb-60150284501.shopifypreview.com

 

Thanks in advance, folks!

Accepted Solution (1)

topnewyork
Astronaut
1365 165 224

This is an accepted solution.

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

ul.header__links-list.fs-navigation-base {
    font-weight: 700 !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

View solution in original post

Replies 2 (2)

topnewyork
Astronaut
1365 165 224

This is an accepted solution.

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

ul.header__links-list.fs-navigation-base {
    font-weight: 700 !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
martujv
Trailblazer
234 2 46

It worked, thank you!