Actually, you could do both the image and the text with css.
For your button:
Code:
<span id="button1"><a href="link1.htm">Button1</a></span>
And for your css
Code:
<style>
#button1 a {
text-decoration:none;
font-weight:bold;
border:3px solid;
padding:2px;
border-color:red;
background:#ffffff;
background:url("image_nohover.gif");
background-repeat: no-repeat;
background-position:center;
}
#button1 a:hover {
text-decoration:none;
font-weight:bold;
border:3px solid;
padding:2px;
border-color:blue;
background:#ffffff;
background:url("image_hover.gif");
background-repeat: no-repeat;
background-position:center;
}
</style>
You would also set the styles for A:visited and A:active
Bookmarks