Thursday 29 September 2016

Magento 2 - Owl Carousel makes wrapper a few thousand pixels wide at 767px and below

Hi,

We can solve this issue by multiple way:

  • http://magento.stackexchange.com/questions/105638/owl-carousel-magento-2-not-fully-responsive
    • .columns .column.main {
          overflow: hidden;
      }
      
    • Or
    • .columns .column.main {
          width: 100%;
      }
      
  • Another solution I found:
    • .columns {
          display: block;
      }
      

Good luck!

No comments:

Post a Comment