View Single Post
  #17 (permalink)  
Old 06-07-2008, 11:54 PM
Major_Small's Avatar
Major_Small Major_Small is offline
dPS +1000 Club
 
Join Date: Dec 2007
Posts: 1,572
Default

Quote:
Originally Posted by Nicole View Post
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.
__________________
Zooomr|Flickr|Big Stock Photo|dreamstime
All work is licensed under a
Creative Commons Attribution-Noncommercial 3.0 United States License unless otherwise noted. (meaning you can edit and repost my images unless I specifically ask you not to)
All post-processing done with The Gimp

Last edited by Major_Small; 06-07-2008 at 11:56 PM.
Reply With Quote