Anyone know how to change the colour of one title 'SALE' to red in the menu bar (Testament Theme)?

Hi,

It looks as though your menus have different ids. Try the following:

ul#SiteNav,
ul#MobileNav {
  li:first-of-type a {
    color: red;
  }
}

Regards,

Tom