Ok, to remove some of the spacing, without having to do any rearranging in the template, you can change ".wrapperAttribsOptions" in your stylesheet to this:
.wrapperAttribsOptions {
margin: 0;
}
Then change "#cartAdd" to this:
#cartAdd {
float: right;
text-align: center;
margin: 0;
border: 1px solid #000000;
padding: 1em;
}
Changing the "padding:1em;" to "padding:0" will remove even more space, however then you lose the padding for the cart box, however if you also remove the border:1px solid #000000; it would look fine.




