Reduce the text size of the menus ( Shopify Dawn Theme )

Solved

Reduce the text size of the menus ( Shopify Dawn Theme )

dreamtechzone_5
Shopify Partner
576 1 91

Hello Everyone!

I would like to reduce the text size of the menus in mobile mode. Please help me. Thank you.

Store: https://blue-chic-clothes.myshopify.com/

Password: Admin

 

Screenshot (51).png

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10036 2386 3012

This is an accepted solution.

Hi @dreamtechzone_5 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.menu-drawer__menu-item {
    font-size: 1.2rem !important;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1739214845407.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

beauxbreaux
Shopify Partner
295 25 60

Go to that header section in the customizer. At the bottom of the left side panel with all the settings you should see 'Custom CSS'. 

 

You can put this code:

@media only screen and (max-width: 768px) {
  .link--text {
    font-size: small;
  }
}

 

You can also put pixels instead of 'small' by replacing small with 9px, or any number larger or smaller to make the font smaller or larger accordingly. 

Beaux Barker
Developer
Buy me a Coffee

Made4uo-Ribe
Shopify Partner
10036 2386 3012

This is an accepted solution.

Hi @dreamtechzone_5 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.menu-drawer__menu-item {
    font-size: 1.2rem !important;
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1739214845407.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.