How do you get rid of the link underline without CSS. I'm try to build my page to look good in Netscape and forgot.
| SitePoint Sponsor |

How do you get rid of the link underline without CSS. I'm try to build my page to look good in Netscape and forgot.





You can't get rid of it without CSS. But remember, Netscape has supported CSS since before IE picked it up. Your CSS pages will work in both browsers almost exactly the same.


i don't know if there is a way to do it w/out css, but this is what i use
and i get no lines in netscape 4.75 and 4.76 for mac and pc.Code:<style> <!-- a{text-decoration:none} --> </style>
. . . chris





Without trying to pick a fight, that statement is incorrect. If you look through some past posts regarding Netscape you'll find a grocery list of CSS, JavaScript and other associated support problems, although, many of these have been fixed with NS6.Originally posted by qslack
You can't get rid of it without CSS. But remember, Netscape has supported CSS since before IE picked it up. Your CSS pages will work in both browsers almost exactly the same.



<style type="text/css">
a:link { text-decoration: none}
a:visited { text-decoration: none}
a:hover { text-decoration: none}
a:active { text-decoration: none}
</style>
try this.. it will get rid of all links. in NS and IE
Blamestorming: Sitting around in a group discussing why a deadline was missed or a project failed and who was responsible.
Exbabylon- Professional Internet Services
add:
style="text-decoration:none"
to the links you dont want to have underlines
Bookmarks