Assuming the graphic you attached is full size (which I assume due to cursor size), then the following will work with the button graphic being a combined normal/rollover as per attached.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style type="text/css">
<!--
* {
margin: 0;
padding: 0;
}
#nav {
display: block;
width: 510px;
height: 146px;
margin: 10px auto 0;
}
#nav li {
list-style: none;
float: left;
}
#nav a {
display: block;
width: 255px;
height: 73px;
text-align: center;
line-height: 73px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 28px;
font-weight: bold;
color: #FFFFFF;
background-image: url(images/button.png);
background-position: left bottom;
}
#nav a:hover {
background-position: left top;
}
-->
</style>
</head>
<body>
<ul id="nav">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</body>
</html>
Cheers
Graeme
Bookmarks