Text links without lines in html ... how?

I can’t figure out how to make text links without the lines underneath them. Does this make sense?

Like when you see a site that has a menu of text that even changes color on a rollover but it’s editable text, not a graphic link.

Does this have something to do with DHTML/CSS?

Thanks in advance.

t2d (<— frustrated!)

Its Cascading Style Sheets (CSS):

<style type="text/css">
<!--
a:link {color: #FFFFFF; text-decoration: none}
a:active {color: #FFFFFF; text-decoration: none}
a:visited {color: #FFFFFF; text-decoration: none}
a:hover {color: #FFFFFF; text-decoration: none}
//-->
</style>

Enter this inbetween the head tags!

For text-decoration either use ’none, underline, italic, bold, ect.' and if you have any more questions don’t hesitate to ask!

Thank you SO much. That was driving me crazy!

I’ll give it a try as soon as this Aleve kicks in. :slight_smile:

t2d