Posted on: 10/06/05 04:09pm
By: Anonymous (Turner)
All I want is for my links to be bold, colored, with no underline. I try to remove the underline by adding "text-decoration: none" to the a: class. Nothing happens. What gives?
Is the following wrong???
a:link {
background:transparent;
color:#006600
font weight: bold;
text-decoration: none;
}
a:visited {
background:transparent;
color:#006600
font weight: bold;
text-decoration: none;
}
a:hover {
background:transparent;
color:#00d000
font weight: bold;
}
a:active {
background:transparent;
color:#FF0000
font weight: bold;
}
CSS in Professional Theme
Posted on: 10/07/05 07:49am
By: Robin
[QUOTE BY= Turner]
Is the following wrong???
[/QUOTE]
As a start add missing semicolons to the lines with colors and add text-decoration: none; to all link attributes i.e visited, hover, etc.
That should do the trick
CSS in Professional Theme
Posted on: 10/07/05 04:40pm
By: Anonymous (Turner)
Yikes. Thanks so much. I would have bet my life (and lost) I had those semi-colons in there! I need more sleep.