Okay I found out how to do it so ill post here incase anyone needs to know.
For some reason, in stylesheet.css, this line is commented out
Code:
.optionName label {
font: bold 12px Verdana;
}
.attribsSelect {
width: 120px;
float: left;
}
All I did was put it back in and added
so it looked as follows:
Code:
.optionName label {
font: bold 12px Verdana;
}
.attribsSelect {
width: 120px;
float: left;
display: none;
}
Hope this helps someone!
(and if anyone knows why this is commented out of the stylesheet.css i'd love to know!)
Dan