In your stylesheet, find this block of code:
Code:
#headerWrapper, #contentMainWrapper, #logoWrapper{
width:850px;
height:110px;
background-image:url(../images/);
background-repeat: ;
}
and add margin-bottom: 135px; and remove the "unused" background-repeat: ; to make that whole block look like:
Code:
#headerWrapper, #contentMainWrapper, #logoWrapper{
width:850px;
height:110px;
background-image:url(../images/);
margin-bottom: 135px;
}
That should move your sideboxes back down.
Also, you have a comma that's creating a parse error. Find and remove it in this block of code:
Code:
, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 1em;
padding: 1em;
}
See it? Right before the "#cartBoxListWrapper?............yea.............that needs removed.
Hope this helps.