• In the customizer >> Woocommerce >> Product Catalog, i’ve set the Products Per Row to 4, but the theme seems to insist on showing 2 columns. If you inspect the page you can see that the enclosing ul class around the products is “column-4” but the page always renders with two columns, no matter the setting in the customizer. Interestingly, in the customizer preview pane the look is correct, but on the live page… always 2 columns. Can someone help me diagnose this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello there,

    I can accept it is a bug that need to be fixed shortly by our development team.

    Meanwhile, try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    
    .woocommerce ul.products[class*="columns-"] li.product:nth-child(2n), 
    .woocommerce-page ul.products[class*="columns-"] li.product:nth-child(2n) {
      float: none;
    }
    
    .woocommerce ul.products[class*="columns-"] li.product, 
    .woocommerce-page ul.products[class*="columns-"] li.product {
      width: 25%;
      clear: unset;
      float: left !important;
    }
    

    Regards,
    Kharis

Viewing 1 replies (of 1 total)
  • The topic ‘Sydney Theme: Woocommerce Shop Columns’ is closed to new replies.