Click to See Complete Forum and Search --> : A really basic question


glruc
10-20-2003, 11:39 PM
Hi,

I'm new to web-world, just trying to set up my first web page (My "Idiot's guide to creating a web page book is at my side right now!) I am in Composer and editing my page. I am ripping my hair out trying to find out how to omit an underling from TEXT. I am using text to link to another page which works fine, I just can't get rid of the underline! The "Idiot's" book told me to change my text-decoration value to 'none', but it doesn't make any difference on my page. Anybody got any idea on what I'm missing here?
Thanks in advance for your patience with a newbie!

Gail

MotherNatrsSon
10-20-2003, 11:54 PM
Put this in between the <head> and </head> tags at the top of the page.

<style type="text/css">
a:link {color: #FF0000; text-decoration:none} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF; text-decoration: underline} /* mouse over link */
a:active {color: #0000FF} /* selected link */
</style>

You can change the colors to whatever you want them to be

MNS

glruc
10-21-2003, 06:25 AM
It's working! Thank you so much!