How can I make the 'shop' menu item bold in Debut theme?

Hey,

I would like to know how can I have the ‘‘shop’’ in bold in my menu ?
Thanks.

Link : https://relentless-clothingz.myshopify.com

Capture d’écran 2022-02-22 à 21.52.25.png

1 Like

@Ulysse1300

Please Add this CSS to your css file

ul#SiteNav li.site-nav--has-dropdown {
 font-weight:bolder !important;
}

Thank You!

1 Like

Hi @Ulysse1300 ,

Go to Assets > theme.css and paste this at the bottom of the file:

.site-nav li:first-child .site-nav__link--main .site-nav__label {
    font-weight: 600 !important;
}

With instructions of @infoatcodelab7 , it will bold all titles inside of mega menu ‘Shop’.

Hope it helps!

1 Like

Thanks for both of your answer, it works perfectly.

1 Like