Hello johriley,
Try the following lines of code in CSS:
Code:
#box_login_wrapper {
width:200px;
height:125px
}
.box_login_left {
background:url(../images/dogwalkerheaderleft.png) 0 0 no-repeat;
width:27px;
height:125px;
float:left;
}
.box_login_middle {
background:url(../images/dogwalkingheaderrepeat.png) 27px 0 repeat-x;
width:146px;
height:125px;
float:left;
}
.box_login_right {
background:url(../images/dogwalkerheaderright.png) 0 0 no-repeat;
width:27px;
height:125px;
float:right;
}
HTML Code:
HTML Code:
<div id="box_login_wrapper">
<div class="box_login_left"></div>
<div class="box_login_middle"></div>
<div class="box_login_right"></div>
</div>
Let me know if that works! G'luck
Bookmarks