benhowdle89
benhowdle89

Reputation: 37464

Strange browser issue regarding hyperlink colours (Firefox vs. Safari on an iMac)

If you wouldn't mind heading over to my site and viewing it in Safari on a Mac and Firefox on a Mac, the hyperlink colours change between the usual blue in FF and purple in Safari. Any ideas?

Upvotes: 0

Views: 3419

Answers (3)

Alex Howell
Alex Howell

Reputation: 1341

One of the CSS files from your theme is setting the link colour to blue. As Eric says, you can change this to any colour you like (or remove it if you want the default).

http://blog.twostepmedia.co.uk/wp-content/themes/thematic/library/styles/default.css

a:link { color:#004B91; }

Upvotes: 2

Adrian Carolli
Adrian Carolli

Reputation: 695

There is actually no difference between how FF and Safari handles your site; if you visit/click on the links in both browsers you will notice that the color will change in each browser to a purple indicating you have visited the site. This is simply a default CSS property.

If you do not like this property, add this to your CSS:

a:visited {color:blue;}

This change will set the link to blue even after someone visits the link.

Hope this helps

Upvotes: 2

Eric Fortis
Eric Fortis

Reputation: 17350

Add this to your CSS and use the color of your choice

a:link {color:orange;}

a:visited {color:blue;}

a:hover {color:red;}  

a:active {color:green;} 

Upvotes: 1

Related Questions