WooCommerce: Show 4 Products per Row

Written by Dan Mossop

When you set up WooCommerce with the Divi Theme, you'll find it creates you a page for your store. After adding some products, you'll find that your store has a 3 column layout, like so:

If you'd prefer to have four items per row, you can add the following CSS to Divi:

@media screen and (min-width:1024px) {
    .woocommerce ul.products li.product { 
	width: 21% !important;
	margin: 2% !important;
	clear: none !important;
    }
    .woocommerce ul.products li.product:nth-child(4n+1) {
	clear: both !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .woocommerce ul.products li.product.first, .woocommerce ul.products li.product.last {
        clear: right !important;
    }
    .woocommerce ul.products li.product:nth-child(4n+1) {
         clear: none !important;
    }
}
Now your store will look something like so:

Thanks to Innuvo and vks for the suggested improvements.

I've added this as a feature in Divi Booster. Simply enable the "Plugins > WooCommerce > Make WooCommerce store display 4 items per row" option, and it will automatically add the code for you.

Want get more out of Divi?

Hundreds of new features for Divi
in one easy-to-use plugin

17 Comments

  1. I bought divi last year and it's great

    Reply
  2. It works nice! Great solution!

    Reply
  3. This worked for me, thank you!!!

    Reply
  4. use below it will work on all the devices perfectly

    @media screen and (min-width:1024px) {
    .woocommerce ul.products li.product {
    width: 21% !important;
    margin: 2% !important;
    clear: none !important;
    }
    .woocommerce ul.products li.product:nth-child(4n+1) {
    clear: both !important;
    }
    }

    Reply
    • Hey vks, that media query is a nice addition – it nicely softens the transition as the screen size decreases. I've updated the code above, and Divi Booster, to include it. Thanks!

      Reply
    • Hey thanks for this code! I set it up for 5 columns easily. I was wondering if you know how to easily make it show more than 1 row on a page?

      Reply
      • Nevermind, I realized this was part of the Divi settings for number of posts per page. Thanks!

        Reply
      • How can I set it up for 5 columns?

        Reply
        • Hi Adilson, I haven't tested it yet but you should be able to do it by modifying the above code as follows:

          Change:
          width: 21% !important;
          margin: 2% !important;

          To:
          width: 16% !important;
          margin: 2% !important;

          (i.e. width + 2*margin = 20% or 1/5th of the total width)

          And change each occurrence of "nth-child(4n+1)" to "nth-child(5n+1)"

          Hope that helps, but let me know if you can't get it to work. Thanks!

          Reply
          • That worked Dan, thanks!

  5. Thank you soooooo much, you saved me <3

    Reply
  6. Thanks for help, the code helped me out from this problem on my online store construction.

    Reply
  7. Thanks for the help. Works Great on my online store!

    Reply
  8. Just as a heads up to this, it does work. If you want it to work correctly on mobile too, add the below to help with the clearances:

    @media screen and (min-width: 768px) and (max-width: 980px) {
    .woocommerce ul.products li.product.first, .woocommerce ul.products li.product.last {
      clear: right !important;
    }
    
    .woocommerce ul.products li.product:nth-child(4n+1) {
    	clear: none !important;
    }
    }
    
    Reply
    • Hey Innuvo, thanks so much for the tip – it works very nicely. I've updated the post to include it and added into Divi Booster for the next release (1.9.8). Cheers!

      Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.

We may earn a commission when you visit links on our website.

Check out Divi Booster

Divi Booster upgrades Divi with hundreds of new features to help you build awesome sites with ease.

Latest Posts

Add a Frosted-Glass Background Blur in Divi

Give your Divi layouts a polished, glassmorphism look by blurring the content behind a semi‑transparent Divi section, row or module. This effect enhances readability over busy or textured backgrounds while preserving the visual impact of your imagery and layout. In...

Customize Lightbox Title Styling in the Divi Gallery Module

Adjust the appearance of the lightbox title that appears when visitors open images from a Divi Gallery to align with your brand and improve readability. Refining the title’s color, size, and weight enhances visual hierarchy, accessibility, and overall polish. In this...

Center the Lightbox Image Count in the Divi Gallery Module

Centering the image count in a gallery lightbox creates a cleaner, more balanced presentation and makes it easier for visitors to see where they are in the image set. This simple visual tweak can enhance readability, especially with larger images and longer captions,...

Style the Divi Gallery Module Lightbox Image Count

Tailor the appearance of the image counter in the Divi Gallery module lightbox to match your brand and improve readability. By customizing the counter’s color and typography, you ensure it displays clearly and suits your design. In this guide we show you how to style...

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

17 Comments

  1. I bought divi last year and it's great

    Reply
  2. It works nice! Great solution!

    Reply
  3. This worked for me, thank you!!!

    Reply
  4. use below it will work on all the devices perfectly

    @media screen and (min-width:1024px) {
    .woocommerce ul.products li.product {
    width: 21% !important;
    margin: 2% !important;
    clear: none !important;
    }
    .woocommerce ul.products li.product:nth-child(4n+1) {
    clear: both !important;
    }
    }

    Reply
    • Hey vks, that media query is a nice addition – it nicely softens the transition as the screen size decreases. I've updated the code above, and Divi Booster, to include it. Thanks!

      Reply
    • Hey thanks for this code! I set it up for 5 columns easily. I was wondering if you know how to easily make it show more than 1 row on a page?

      Reply
      • Nevermind, I realized this was part of the Divi settings for number of posts per page. Thanks!

        Reply
      • How can I set it up for 5 columns?

        Reply
        • Hi Adilson, I haven't tested it yet but you should be able to do it by modifying the above code as follows:

          Change:
          width: 21% !important;
          margin: 2% !important;

          To:
          width: 16% !important;
          margin: 2% !important;

          (i.e. width + 2*margin = 20% or 1/5th of the total width)

          And change each occurrence of "nth-child(4n+1)" to "nth-child(5n+1)"

          Hope that helps, but let me know if you can't get it to work. Thanks!

          Reply
          • That worked Dan, thanks!

  5. Thank you soooooo much, you saved me <3

    Reply
  6. Thanks for help, the code helped me out from this problem on my online store construction.

    Reply
  7. Thanks for the help. Works Great on my online store!

    Reply
  8. Just as a heads up to this, it does work. If you want it to work correctly on mobile too, add the below to help with the clearances:

    @media screen and (min-width: 768px) and (max-width: 980px) {
    .woocommerce ul.products li.product.first, .woocommerce ul.products li.product.last {
      clear: right !important;
    }
    
    .woocommerce ul.products li.product:nth-child(4n+1) {
    	clear: none !important;
    }
    }
    
    Reply
    • Hey Innuvo, thanks so much for the tip – it works very nicely. I've updated the post to include it and added into Divi Booster for the next release (1.9.8). Cheers!

      Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.