WooCommerce size issue

johnburgess

New member
I am having an issue with getting proper sizing for my 360 images. I have it set at 500x500 which is the size of my normal product images on pages without 360 viewer. however once uploaded it displays at 300x300 with a wrap that extends 900px across the page moving down the rest of my page elements. I was hoping the 360 viewer would sit just like my static image pages.

here are examples:

360 images
http://avalex.com/product/avr8411-copy/

static images
http://avalex.com/product/avr8411/
 

WebSupport

Active member
Hi,

Yes, 300x300 is just the default size of a 360 product view in our native WooCommerce integration.

It should be possible to change it under WebRotate 360 Settings in your WooCommerce admin via Viewer Width and Viewer Height . You can see these fields in the second screenshot via this post on our blog:

http://www.webrotate360.com/Blog/post/N ... ation.aspx

You can then add this CSS style somewhere in your theme's CSS to float the 360 view to the left as your product description is floated to the right.

Code:
.wr360woowrap
{
     float: left;
     width: 50%;
}

I hope it helps! Just let us know if this doesn't work.
 
Top