To extract, currently there is...
Code:
#boxes {
margin: 0px;
padding: 0px;
float: left;
display: inline;
font-family : Arial, Helvetica, sans-serif;
font-size : 13px;
}
.box {
margin: 0px 5px 5px 0px;
padding: 0;
background: #FFFFFF url('/images/server1.jpg') left no-repeat;
width : 240px;
height : 170px;
border: solid #B3B3B3 1px;
border-top: none;
}
#content {
margin: 0px;
padding: 15px;
height: 602px;
border: solid #B3B3B3 1px;
}
Try changing content to...
Code:
#content {
margin: 0 0 0 145px;
padding: 15px;
height: 602px;
border: solid #B3B3B3 1px;
}
...adding a left margin of 145px to the content div, the margin being based on the length (+ margin) defined by boxes/box.