A really basic question

liunx

Guest
Hi,<br />
<br />
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?<br />
Thanks in advance for your patience with a newbie!<br />
<br />
Gail<!--content-->Put this in between the <head> and </head> tags at the top of the page.<br />
<br />
<style type="text/css"><br />
a:link {color: #FF0000; text-decoration:none} /* unvisited link */<br />
a:visited {color: #00FF00} /* visited link */<br />
a:hover {color: #FF00FF; text-decoration: underline} /* mouse over link */<br />
a:active {color: #0000FF} /* selected link */<br />
</style><br />
<br />
You can change the colors to whatever you want them to be<br />
<br />
MNS<!--content-->It's working! Thank you so much!<!--content-->
 
Back
Top