The space under the options line caused by the <br class="clearBoth"/>.
HTML Code:
<div class="wrapperAttribsOptions">
<h4 class="optionName back">
<label for="attrib-81" class="attribsSelect">Shirt Style</label>
</h4>
<div class="back">
<select id="attrib-81" name="id[81]">
</select>
</div>
<br class="clearBoth"/>
</div>
<br class="clearBoth"/>
May be try the following.
Either:
1. Modify the file and remove the unwanted <br class="clearBoth"/>
OR
2. Try the following in the stylesheet.
For now your original at about line 70:
Code:
.clearBoth {clear: both;}
To reduce the line-height of clearBoth, and change it to:
Code:
.clearBoth {clear: both; line-height: 0;}
But
WARNING:
The .clearBoth used for all other pages, and it will affect all other pages!
.