Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hover Text Formating

Status
Not open for further replies.

jwkolker

Programmer
Jan 9, 2003
68
US
I want to change the look of hyperlink text so that the link is not underlined and when you hover over it i want it to be underlined and perhaps as different color. this is what I have now - how do i change text attributes?

Code:
<STYLE TYPE=&quot;text/css&quot;>
<!--
.fnh  a:link    { color: #ffffff; }
.fnh  a:visited { color: #ffffff; }
.fnh  a:active  { color: #ff0000; }
.fnh  a:hover   { color: #ff0000; background-color : #0000FF;}
.fnh  a{ text-decoration: none }
-->
</STYLE>

Thanks,

JoKo

John Kolker
Programmer
jwkolker@comcast.net
 
You should be using this.

<STYLE TYPE=&quot;text/css&quot;>
<!--
a.fnh:link { color: #ffffff; }
a.fnh:visited { color: #ffffff; }
a.fnh:active { color: #ff0000; }
a.fnh:hover { color: #ff0000;
text-decoration: underline;}
a.fnh { text-decoration: none }
-->
</STYLE>
<a class=&quot;fnh&quot; href=&quot;#&quot;>somelink</a>


I would suggest you to try Topstyle from The software will give you all the information on the parameters you want to use for text, margin, padding, borders, backgrounds etc.. plus makes CSS a matter of point and click.


you may find this page of great use also.



grtfercho çB^]\..
 
Hi Again- this is not working for me - take a look at it or show me a link to a page where this works if you could - thanks.

JK

John Kolker
Programmer
jwkolker@comcast.net
 
It's working with no problems in both IE and NN. Make sure you are refreshing the page and/or the background of the page is different than white. or change the color of the link to show against the background.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top