This is in your stylesheet and there are 2 items ganged that you will have to seperate and adjust
This is specifically the class .categoryListBoxContents and also the H3 tag - Find these and seperate them out and adjust
Code:
h1, h2, h3, h4, h5, h6 {
margin: 0.3em;
}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin: 1em 0em;
}
So that you end up with:
Code:
h3 {
margin: 0.0em;
}
h1, h2, h4, h5, h6 {
margin: 0.3em;
}
.categoryListBoxContents {
margin: 0em 0em;
}
.centerBoxContents, .specialsListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin: 1em 0em;
}