Tagged: grid row, woocommerce
Is it possible to center a WooCommerce product within a cell in a “Grid Row”?
An example can be seen in the link below.
Thanks!
Hi MLA18!
try to control it using this code in Quick CSS:
ul.products.slide-entry-wrap.active-slide {
left: 135px;
}
and adjust as needed.
Cheers!
Andy
Hey MLA18!
Drag a codeblock element to that page and add this inside.
<style type = "text/css">
.shop_columns_2 .products .product {
width: 49.5%;
margin: 0px auto;
float: none;
}
</style>
Though I think if you use the product grid element instead of the grid row it will get the same effect.
Best regards,
Elliott
Excellent. That did the trick.
Thanks!