DrDoc

msg:1584891 | 8:20 am on Jun 18, 2002 (gmt 0) |
Which version are you testing in?
|
DrDoc

msg:1584892 | 8:34 am on Jun 18, 2002 (gmt 0) |
If you do this it works: a { display: block; text-decoration: none; } a:hover { font-weight: bold; } Note that without text-decoration: none; for the a element you'll get an ugly overline :(
|
PsychoTekk

msg:1584893 | 9:00 am on Jun 18, 2002 (gmt 0) |
thanks DrDoc, this works fine for me now: a {display:block; text-decoration:none} a:hover {display:block; text-decoration:none; font-weight:bold;} :) btw, i'm using Opera 6.04 build 1120
|
DrDoc

msg:1584894 | 2:34 am on Jun 19, 2002 (gmt 0) |
Just as a little tip .. You don't need to re-declare display:block; text-decoration:none; for a:hover since you already have it in the global a identifier. Saves you a couple of bytes ;)
|
|