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