You may have tried "all" of the edits, but if so you didn't keep them, or didn't use the right ones.
In your stylesheet, find
Code:
.categoryListBoxContents{
font-size: 13px;
font-weight: bold;
background-color: #E9D19D;
margin: 10px;
padding-top: 5px;
padding-right: 10px;
padding-bottom: 5px;
padding-left: 10px;
border: 1px solid #101D41;
text-align: center;
}
and add
width: 43% !important;
float: left;
to get
Code:
.categoryListBoxContents{
width: 43% !important;
float: left;
font-size: 13px;
font-weight: bold;
background-color: #E9D19D;
margin: 10px;
padding-top: 5px;
padding-right: 10px;
padding-bottom: 5px;
padding-left: 10px;
border: 1px solid #101D41;
text-align: center;
}
A stock stylesheet has
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
which allows all of these elements to sit as many as will fit on one line. You appear to have removed #logo as well as .categoryListBoxContents from the selector list:
Code:
.centerBoxContents, .specialsListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}