You are here:  » Change color of html links

Support Forum



Change color of html links

Submitted by Pep on Mon, 2008-12-01 08:29 in

Hi
Can you please tell me how to change the color of links on the html pages?

eg "Home" "High to Low" and the links to the more info pages, etc.

Regards

Peter

Submitted by support on Mon, 2008-12-01 10:01

Hi Peter,

This can all be done quite easily via css in default.css, just add this:

a {
  color: red;
}

(where red can be any colour name, or an RGB colour like #FF8899)

If you only wanted to change the colour in a specific section, include the class selector for that section. For example, where the Order By: links are, the class selector is .banner, so you could use:

.banner a {
  color: red;
}

Hope this helps!

Cheers,
David.