How can I remove bold from Dawn Mega Menu headers?

Solved

How can I remove bold from Dawn Mega Menu headers?

Ianjs
Shopify Partner
6 0 0

Hello,

Could someone advise me on the code needed to change the Bold header titles to Plain in the Dawn Mega Menu please.

Thanks.

Ian

 

Screenshot 2024-01-26 at 12.02.08.png

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @Ianjs,

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag type the following. Screenshot attached for reference.

 

 

<style>
.mega-menu__link--level-2 {
  font-weight: normal !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1706270882632.png

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 4 (4)

ThePrimeWeb
Shopify Partner
2139 616 520

This is an accepted solution.

Hey @Ianjs,

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag type the following. Screenshot attached for reference.

 

 

<style>
.mega-menu__link--level-2 {
  font-weight: normal !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1706270882632.png

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
Ianjs
Shopify Partner
6 0 0

Perfect thanks

topnewyork
Astronaut
1130 151 187

Hi lanjs,

In Shopify Admin, navigate to "Edit theme code", then open the "base.css" file and add the following code at the end: 

.mega-menu__link--level-2 {
  font-weight: normal !important;
}


  If I managed to help you then, don't forget to Like it and Mark it as Solution!

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
Ianjs
Shopify Partner
6 0 0

Thanks I first tried the version from ThePrimeWeb and that worked, but thanks again for your suggestion