Div Tag CSS

Hello,

How can I change the dimensions for the div.cmsms_product_left_column?

I have searched for it everywhere but can’t find the file that has it.

Here is the direct link to the page:

http://www.armitageproduce.com/product/la-preferida-pure-honey-comb/

Here are the screenshots:

.cmsms_product_left_column, .cmsms_product_right_column {
box-sizing: border-box;
float: left;
overflow: hidden;
position: relative;
width: 50.88%;
}

is in cmsms-woocommerces-style.css (Line 507, according to Firebug.)

Thanks, I see that it has the settings for the width but not the height, so do I just add height in there? I am not sure how it determines it now without.

The apparent height is set by the padding at line 131 of style.css:

.preloader, .preloader_removed {
background: url(img/loader.gif) 50% 50% no-repeat;
display: block;
width: 100%;
height: 0;
[COLOR="#FF0000"]padding-bottom: 58.2%;[/COLOR]
position: relative;
}