2012-04-27, 01:21 AM
Not sure if this is what you want but making a button that changes on mouse over is something like this
Code:
<html>
<head>
<style>
.button a {
display: block;
width : 100px;
height : 20px;
background: url(foo.jpg);
}
.button a:hover {
background: url(bar.jpg);
}
</style>
</head>
<body>
<div class="button"><a href="#">link</a></div>
</body>
</html>
