VelvetMorning
04-08-2008, 05:44 PM
How can i make effect when i mouseover on hyperlink it underline?
Thx :)
thetestingsite
04-08-2008, 06: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.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.