non-underlined taxt links

liunx

Guest
Hi,<br />
<br />
Does anybody know how to make a non-underlined text link (I know I can change the color with alink vlink..., but how to change the aspect?)<br />
<br />
Thank you<br />
<br />
Roman<!--content-->Try this free script.....<br />
<br />
<!-- m --><a class="postlink" href="http://www.dynamicdrive.com/dynamicindex7/css1.htm">http://www.dynamicdrive.com/dynamicindex7/css1.htm</a><!-- m --><!--content-->You have to use CSS, for example:<br />
<br />
<style type="text/css"> <br />
<!-- <br />
a:link {text-decoration:none; color:"#9999ff";} <br />
a:visited {text-decoration:none; color:"#9900ff";} <br />
a:hover {text-decoration:underline; color:"#cc0066";} <br />
--> <br />
</style> <br />
<br />
Place this code inbetween the <head> tags. The text-decoration:none part will get rid of the underlining.<!--content-->
 
Back
Top