<em>@scenteur7 17560 wrote:</em><blockquote>Any idea why my links aren’t showing up in the appropriate color?
http://perfumecritic.com/joomla2
I use the following code in my active CSS:
/* Normal link */
a {
color: #CC0000;
text-decoration: none;
}
a:hover, a:active, a:focus {
border-bottom: 1px solid;
color: #CC0000;
text-decoration: none;
}</blockquote>
You made a modification some where along the line. The following is what should be there:
/* Normal link */
a {
border-bottom: 1px dotted;
color: #006DA3;
text-decoration: none;
}
a:hover, a:active, a:focus {
border-bottom: 1px solid;
color: #CC0000;
text-decoration: none;
}