Plugin Author
320up
(@320up)
Copy and Paste this in your custom css and see if that works:
.woocommerce-page.columns-4 ul.products li.product:nth-child(4n), .woocommerce.columns-4 ul.products li.product:nth-child(4n) {
clear: none;
}
Plugin Author
320up
(@320up)
The problem is your theme has clear: right; for the last column. It should be clear: none; for it to work.
Try adding this to your “Additional CSS” for all column layouts:
ul.products li.product {
clear: none !important;
}
This doesn’t seem to be working. The alignment no longer works here too 🙁
Plugin Author
320up
(@320up)
Leave a link to your website with the alignment issues.
I would just like to say that, even though I am using AstraPro and ElementorPro, and even though their support people either don’t seem to understand the nature of this problem or regard it as a “feature” for the future (rather than a bug, which is how I regard it), I was able to fix it with a combination of this plugin and the code from post 2 of this thread, namely:
.woocommerce-page.columns-4 ul.products li.product:nth-child(4n), .woocommerce.columns-4 ul.products li.product:nth-child(4n) {
clear: none;
}
So @320up, thank you, thank you, thank you!
-Ron