Hello,
I am using debut theme. I want to change the colour of ‘SALE’ in the drop down main menu to be red.
Can anyone help?
thanks, Patrick.
Hello,
I am using debut theme. I want to change the colour of ‘SALE’ in the drop down main menu to be red.
Can anyone help?
thanks, Patrick.
@PatrickCook
Welcome to the Shopify community!
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Thank you
I just want to make ‘Sale’ to be red in the ‘Shop’ drop down in the main menu.
thanks ![]()
div#SiteNavLabel-shop li:last-child a {
color: red !important;
}
Add this code in the bottom of the theme.css.
i hope it will work. if it helpful kindly like and accept our solution
Hi. That worked great for desktop. Could I please also have the code for mobile too? It’s not showing on mobile at the moment.
thanks. ![]()
Do you have code for mobile too?
ul.mobile-nav__dropdown li:last-child a {
color: red !important;
}
@PatrickCook
add this code. if helpful like and accept our Solution.
Thank you
ul.mobile-nav__dropdown li:last-child a {
color: red !important;
}
@PatrickCook
add this code. if helpful like and accept our Solution.
Thank you
This code makes the last item for each drop down list turn red. I only want the ‘Sale’ link to be red.
Thanks.
Hi. Can you fix the code so that only ‘Sale’ in the drop down menu turns red. The code you gave makes every last item in every drop down menu turn red. Thanks ![]()