If I understand you correctly you want to remove the white space from website.
go to path: includes/templates/fluorspar/css/stylesheet.css
find this
Code:
#productGeneral {
border-style: solid;
border-width: 1px;
border-color: rgb(247, 247, 247);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-weight: normal;
color: rgb(0, 0, 0);
margin: 10px 0px 0px 0px;
padding: 10px;
and replace it with
Code:
#productGeneral {
border-style: solid;
border-width: 1px;
border-color: rgb(247, 247, 247);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-weight: normal;
color: rgb(0, 0, 0);
margin: 10px 0px 0px 0px;
padding: 10px;
background:transparent;
border:none;
}