03-15-2012, 10:39 AM
That is not really hard. The "light" which appears when the link is hovered is actually an image. To activate that image you should use the CSS :hover.
An example:
In the following example, every link on the website you created will turn to Black and White after hovering it. The background color will be black and the text color will be white. Of course, you can put an image on your page and make it change after hovering it. I do not know how to explain it better, but hopefully you understood.
Regards,
Vinwarez.
An example:
Code:
<html>
<head>
<style type="text/css">
a:hover
{
background-color:black;
color:white;
}
</style>
</head>
<body>
<a href="http://bpforums.info">BP Forums</a>
</body>
</html>
Regards,
Vinwarez.
Also known as Rocketalypse.
System.out.println("I prefer Java.");
System.out.println("I prefer Java.");