VelvetMorning
04-08-2008, 06:44 PM
How can i make effect when i mouseover on hyperlink it underline?
Thx :)
thetestingsite
04-08-2008, 07:00 PM
Using css:
<style type="text/css">
a:link,a:visited {
color: #000;
text-decoration: none;
}
a:hover {
color: #0000FF;
text-decoration: underline;
}
</style>
Hope this helps.
vBulletin® v3.8.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.