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

Linked Text without an underline 3

Status
Not open for further replies.

teky

Programmer
Mar 24, 2000
55
US
I am presently using text for links to other pages.<br>But when I set a link to the text, there is an underline with it.<br>Is there anyway I can get rid of that line. <p> <br><a href=mailto: > </a><br><a href= > </a><br>
 
absoutly!!<br><br>put this in your header, under any scripts you may have:<br>&lt;style&gt;<br>a{text-decoration:none}<br>a:visited{text-decoration:none}<br>a:active{text-decoration:none}<br>a:hover{text-decoration:none}<br>&lt;/style&gt;<br><br>this uses stylesheets, something that has many, many posabilities. heres a good stylesheet tutorial:<br><br><A HREF=" TARGET="_new"> <p>theEclipse<br><a href=mailto:eclipse_web@hotmail.com>eclipse_web@hotmail.com</a><br><a href=robacarp.webjump.com>robacarp.webjump.com</a><br>**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.
 
Also this:<br><br>&lt;style type=&quot;text/css&quot;&gt;<br>&lt;!--<br>a:link, a:visited, a:active, a:hover{<br><br>&nbsp;&nbsp;text-decoration: none;<br>}<br>--&gt;<br>&lt;/style&gt;<br><br>The HTML comment tag &lt;!-- --&gt; keeps browsers that don't support stylesheets from displaying your styles as part of the page.<br><br>Good luck<br>-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top