I’m using the Debut theme and would like to change the “sale” link in my navigation to be bold, and red on both desktop and mobile.
Site is www.trinketbk.com
Thanks!!
I’m using the Debut theme and would like to change the “sale” link in my navigation to be bold, and red on both desktop and mobile.
Site is www.trinketbk.com
Thanks!!
HI @erika71690 !
Shouldn’t be hard, go to your theme.scss & add the following CSS Code:
#SiteNav > li:nth-child(7) > a > span {
font-weight: bold;
}
Keep in mind that the seventh Menu will always be bold, just for you to know if want to remove it later.
Let us know!
Dear @erika71690
Hope the following suggestions will help you
/* Start */
.site-header nav ul li:last-child .site-nav__link .site-nav__label {font-weight: bold !important; color: red !important}
/* End*/
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.site-header nav ul.site-nav li:last-child .site-nav__link .site-nav__label
{font-weight: bold !important; color: red !important}