It looks as though your were attempting to set this with:
Code:
/* TESTING*/
.centerBoxWrapperwhatsNew {
margin: 2em;
padding: 2em;
border: 2px solid #000000;
}
try this:
Code:
#whatsNew.centerBoxWrapper {
margin: 2em;
border: 1px solid #000000;
}
and
Code:
#specialsDefault.centerBoxWrapper {
border: 1px solid #000000;
}
This will create a 1px solid border around these areas.
Also find the ' .centerBoxHeading '
Now by playing with the px, margins, and padding of these and the ones around it you can attain what you seek.
If you are not using FireFox and the web dev tools seriously think abot getting them. Especially for these css bouts as you can do the wysiwyg by editing the css interactively and then saving as a local file when you get what you want to be uploaded to you cart later.