Change colour of 'SALE' in main menu to be red - Debut theme

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.

1 Like

@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

www.bikiniwarehouse.com.au

I just want to make ‘Sale’ to be red in the ‘Shop’ drop down in the main menu.

thanks :slightly_smiling_face:

1 Like
div#SiteNavLabel-shop li:last-child a {
    color: red !important;
}

@PatrickCook

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. :slightly_smiling_face:

1 Like

Do you have code for mobile too?

1 Like
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 :slightly_smiling_face: