How can I change my website's sale category text to red?

Hi, we have a sale category on our website and would like the text to show up in red on the menu. Can you advise how to do this please?

https://nimes.co.uk/

@NimesLtd - which menu item do you want in red?

Hi @suyash1 , the category that currently says ‘The Outlet’ but we will be changing the name of this category in January. Thanks

@NimesLtd - please add this css to the very end of your styles.scss file and check, you can rename it but since we have used pseudo css please keep this menu item at very end otherwise the item at last will be red

.navbar-item.header__item:last-child a {color: #ff0000;}

Perfect, thank you @suyash1

@suyash1 It’s not showing as red on a mobile, can you advise? thanks

@NimesLtd - please add this css for mobile and check

.mobile-menu__list-item:last-child label a {color: #ff0000;}

@suyash1 Where do I need to add this code? Thanks

@NimesLtd - please add it to the end of styles.scss file, the same file where you added yesterday’s code