PDA

View Full Version : Text links without lines in html ... how?



time2design
July 17th, 2002, 07:04 PM
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!)

telekinesis
July 17th, 2002, 07:13 PM
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!

time2design
July 17th, 2002, 07:49 PM
Thank you SO much. That was driving me crazy!

I'll give it a try as soon as this Aleve kicks in. :)


t2d