Capitalize Mobile's Menu Font

Solved

Capitalize Mobile's Menu Font

martujv
Trailblazer
205 2 43

Hey, folks! 

 

On the mobile version of my website, the main menu's text are in ALL CAPS for some reason, I will attach a photo:

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

I would like them to be simply Capitalized. 

 

How can I do that?

 

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

 

Thanks in advance, folks!

Accepted Solution (1)

websensepro
Shopify Partner
1842 213 259

This is an accepted solution.

Hi @martujv 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

@media(max-width:768px){
ul.drawer-menu__primary-links li a {
    text-transform: capitalize !important;
}
}

Result:

websensepro_0-1735911617275.png

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 2 (2)

websensepro
Shopify Partner
1842 213 259

This is an accepted solution.

Hi @martujv 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

@media(max-width:768px){
ul.drawer-menu__primary-links li a {
    text-transform: capitalize !important;
}
}

Result:

websensepro_0-1735911617275.png

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

 

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
martujv
Trailblazer
205 2 43

It worked, thank you!