Un-underlining a hyperlink

liunx

Guest
an example <br />
<br />
<p><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.team.com">test</a></p><br />
<br />
how do i make it such tat it wont appear as underlined?<br />
tnks<!--content-->ignore this guys i got it to work<br />
just add in <br />
<br />
a style="text-decoration: none"<!--content-->Cut and Paste this code in to your HTML this will remove the underline form you links and create a rollover effect.<br />
<br />
<style type="text/css"><br />
A:link{ text-decoration: none; color: #0099FF;}<br />
A:visited{text-decoration: none; color: #0000FF;}<br />
A:hover{text-decoration: none; color: #FF0000;}<br />
</style><br />
<br />
the 1st link is your link, change the colour code to your colour, the 2nd is the visited this will change colour when the link has been clicked on, the 3rd will create the roll over effect.<br />
<br />
CONKER'S<!--content-->There are tons of diffrent things you can do with that script if its modified. You can make links become bold, underlined, italicised, change size, color, etc. Its really a fun little script<!--content-->tnks for the help everyone<!--content-->How about changing the background color on mouse over for a table cell?<!--content-->
 
Back
Top