|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
#1
|
|||
|
|||
|
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? |
|
#2
|
|||
|
|||
|
Quote:
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: Code:
a:link { color: blue; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a: visited, a: active { color: #330033; }
dog |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|