Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
text-decoration: underline (resolved)
im trying to add underline when i hover over a link….. i added it but it doesnt seem to work… heres the code i have is there something im missing?
a {
color: #762f2f;
text-decoration: none;
font-family: Verdana, “Lucida Grande”, Tahoma, Helvetica;
border-bottom: 0px;
}
a a:hover {
color: #AB1410;
text-decoration: underline
}
Last edited by blazin6543 (2006-06-30 19:34:49)
Offline
Re: text-decoration: underline (resolved)
a a:hover {
color: #AB1410;
text-decoration: underline
}
should be
a:hover {
color: #AB1410;
text-decoration: underline
}
Offline
Re: text-decoration: underline (resolved)
lol im officially an idiot :) thanks
Offline
Pages: 1