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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Links

Status
Not open for further replies.

lhaworld

Technical User
Jul 2, 2002
24
US
When I make my html text link to another page is there a way (or a script) to get rid of the "underline" it automatically puts underthe text?

Thanks Melanie
 
yes put this in your "a" tag

style="text-decoration:none"

or you could make a class like such

a.one {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #6699CC;
text-decoration: none; }
a.one:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #6699CC;
text-decoration: none; }

and put class="one" in your "a" tag

[Hammer]
Nike Failed Slogans -- "Just Don't Do It!"
 
deecee,

thanks for the code, but i'm not sure where it goes exactly. i have been placing it where i think it should go but i've had no luck. code is below:

<tr>
<td><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;3&quot; color=&quot;#666666&quot;><a href=&quot;overview.htm&quot;>Overview</a>


thank you.
 
above the body tag put <style></style> and put the class in between this

[Hammer]
Nike Failed Slogans -- &quot;Just Don't Do It!&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top