We are currently using theme blockshop for our store, https://www.lashenvypro.com/
I am trying to change the colour of our SALE collection on the top menu to show in red and bold.
Can anyone please provide some assistance.
@KetanKumar would LOVE your help!
Thank you in advance.
Savior
2
Hey @Lashenvypro
- Go to your store Assets > theme–critical.css or theme–critical.css.liquid and paste the lines at the bottom of the file
li.x-menu--level-1--link:last-child a span {
color: red;
font-weight: bold;
}
@Lashenvypro
li.x-menu--level-1--link:last-child a span {
color: red !important;
font-weight: bold !Important;
}
Add this code in the bottom of the theme-critical.css file.
Hi @Lashenvypro ,
you can try follow the instruction below:
- Go to Online Store → Theme → Edit code.
- Asset → /theme-critical.css paste code below into end of the file.
.x-menu li.x-menu--level-1--link[data-link-id="sale"] a span {
color: red !important;
font-weight: bold !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Best regards.
Thank you so much for an extremely quick reply and solution!!!
sorry this actually only works for the desktop site 
is there a solution for both desktop and mobile menu?
thank you!
@Lashenvypro
.y-menu--level-1--link:last-child a {
color: red !important;
font-weight:bold !important;
}
Add this code in the bottom of the theme–async.css file
@Lashenvypro
Kindly like our Solution if helpful,
Let me, know if you need any more help,
Thank you.
Thank you so much! This worked 