Hi @alexanderchristiansen
Unfortunately this is a rounding bug caused by the browser, because of the 2% left right padding on the row. If this was px value then it wouldn’t occur, but because it’s percent the browser doesn’t round the value correctly, or as expected by the masonry script.
I’d either suggest changing this padding to be px, matching the rest of the padding you have, or you can add this css:
@media only only screen and (min-width: 768px) {
.woocommerce ul.products li.product.col-sm-3 {
width: 24.97%;
}
}
Give that a try and let us know.
– Ed