Forum Moderators: not2easy
<div id="button_container">
<div id="left_button" class="rollover"><a href="#">Item 1</a></div>
<div id="buttons_float_right">
<div id="middled_button" class="rollover2"><a href="#">Item 2</a></div>
<div id="right_button" class="rollover3"><a href="#">Item 3</a></div>
</div> <!-- End buttons_float_right -->
</div> <!-- End button container -->
#button_container {
height: 78px;
margin-top: 20px;
}
#left_button {
float: left;
width: 300px;
}
#buttons_float_right {
width: 600px;
float: right;
}
#middle_button {
width: 300px;
float: left;
}
#right_button {
width: 300px;
float: right;
}
.rollover a {
display:block;
width: 290px;
text-decoration: none;
background-image: url(images/button_motion_graphics.jpg);
background-repeat: no-repeat;
background-position: 0 0;
height: 78px;
}
.rollover a:hover {
background-position: 0 -78px;
color: #049;
}
.rollover a:active {
background-position: 0 -156px;
color:#fff;
}
.rollover2 a {
display:block;
width: 290px;
text-decoration: none;
background-image: url(images/button_web_design.jpg);
background-repeat: no-repeat;
background-position: 0 0;
height: 78px;
}
.rollover2 a:hover {
background-position: 0 -78px;
color: #049;
}
.rollover2 a:active {
background-position: 0 -156px;
color:#fff;
}
.rollover3 a {
display:block;
width: 290px;
text-decoration: none;
background-image: url(images/button_contact.jpg);
background-repeat: no-repeat;
background-position: 0 0;
height: 78px;
}
.rollover3 a:hover {
background-position: 0 -78px;
color: #049;
}
.rollover3 a:active {
background-position: 0 -156px;
color:#fff;
}