[css-d] Text Underline not showing up

2005-05-25 Thread Frank McClung
I don't seem to be able to get the .bodytext dotted underline (line 42) to
show up in the text.

 

http://www.computerrecycling.us/ebay.htm

 

Interestingly, the .generalul (see http://www.computerrecycling.us/map.htm)
is showing a dotted underline. 

 

Any help would be appreciated

 

- Frank

 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Text Underline not showing up

2005-05-25 Thread Pringle, Ron
 I don't seem to be able to get the .bodytext dotted underline 
 (line 42) to
 show up in the text.
 
  
 
 http://www.computerrecycling.us/ebay.htm
 
  
 
 Interestingly, the .generalul (see 
 http://www.computerrecycling.us/map.htm)
 is showing a dotted underline. 
 
 Any help would be appreciated
 
 - Frank

Frank-

In this line:

.bodytext a:link, .bodytext a: visited {padding:0px; margin:2px;
color:#00; font-weight:bold; text-decoration:none;  border-bottom:1px
dotted #666;}

Remove the space between the a: visited, so it reads like below:

.bodytext a:link, .bodytext a:visited {padding:0px; margin:2px;
color:#00; font-weight:bold; text-decoration:none;  border-bottom:1px
dotted #666;}

Regards,
Ron
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/