Quote:
Originally Posted by Nicole
I think most of us are just as annoyed by the titles not standing out from the tags as you are.  We're hoping to find a way to fix that when they fix the links not being underlined thing. 
|
Here's your link fix:
HTML Code:
.alt1 a:link, .alt1_alink, .alt1Active a:link, .alt1Active_alink
{
color: #4D528C;
border-bottom: 1px dotted #FF0000; /* add this line */
text-decoration: none;
}
.alt1 a:visited, .alt1_avisited, .alt1Active a:visited, .alt1Active_avisited
{
color: #4D528C;
border-bottom: 1px dotted #FF0000; /* and this one */
text-decoration: none;
}
.alt1 a:hover, .alt1 a:active, .alt1_ahover, .alt1Active a:hover, .alt1Active a:active, .alt1Active_ahover
{
color: #4D528C;
border-bottom: 1px dotted #4D528C; /* and this one. */
text-decoration: underline;
}
I found that in the embedded styles, so I'd guess that's in a template somewhere. Just add the three border-bottom lines and that should fix the links up. I'm still not sure where .alt2 or any of the other classes with link definitions in them are, so that may not be all of them, but the text in the posts is definitely .alt1.