100% width without working

Joshua AMD

New member
Hello everyone,

I have a problem with the shortcode for wordpress, since when setting it to the width that is 100% it does not respond and does not show the 360 ​​image, it only shows if a fixed width is set.
This is the web link:
https://biologica.com.co/bicicletas-electricas-kangura/#diseno
 

WebSupport

Active member
Hi there, Joshua! For 100% width to work, your parent container has to have some width as well, but your theme's CSS style makes it 0 instead via this class:

Code:
.elementor-706 .elementor-element.elementor-element-1b6a217 {
   width: auto;
}
You would need to remove it width: auto to make it work I think.
 
Top