Not sure why, but my layout doesn't display the sign in buttons.
CSS:
.sign-in {
position: absolute;
left: 895px;
top: 30px;
width: 96px;
height: 36px;
background-image: url('button_sign-in.png');
}
.sign-in:hover {
background-image: url('button_hover_sign-in.png');
}
HTML:
<a class="sign-in" href="#" title="Sign In"></a>
The box is there and is click able, just no images in it. The images defiantly exist and are in the same folder as the html file.
Any ideas? Thanks!