You are here:  » Changing link colors

Support Forum



Changing link colors

Submitted by Pep on Mon, 2008-11-10 09:17 in

Hi

Can you tell me where I change the link color for:

Or Search or browse by merchant, category or brand (on the index page)

I can't seem to find where it is in the style sheet or elsewhere.

Regards

Peter

Submitted by support on Mon, 2008-11-10 09:44

Hi Peter,

It's not currently specified in the style sheet but you can add this easily. The best thing to do is probably to give the P tag that they are enclosed within an ID, and then add a style for A tags within that P in the css. To do this, in index.php, look for this code on line 12:

print "<p>";

...and replace this with:

print "<p id='hplinks'>";

And then in default.css, add something like this:

#hplinks a {
  color: red;
}

Cheers,
David.