View Full Version : Style link attributes don't work in Firefox?
Eternal_Howl
07-28-2007, 05:34 AM
IN IE, the link attributes (color, hover, decoration none etc) work fine. In Firefox, I had to resort back to <body text="#...." link="#.....#, alink="#...."> because the CSS attributes wouldn't work when it came to the links. The hover wasn't producing the desired effect and all my links were set to the browser default.
Has anyone else had this problem? Is there a fix?
...the CSS attributes wouldn't work when it came to the links.
What did you try and where did you define your CSS, inline, in the Head or in an external file?
Post your code for people to work on.
To define the colour and text-decoration of links you can write something like this, either inside Style Tags in the Head or in an external CSS file:
a:link { color: blue; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a: visited, a: active { color: #330033; }
good luck!
dog
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.