Hi,
On www.caffedellosport.nl I’d like to show 3 products in my Woocommerce widget. The products are now shown beneath each other, but I’d like them to be lined out on 1 rule (next to each other).
I hope you can help me!
Thx!
Krijn
Hi,
On www.caffedellosport.nl I’d like to show 3 products in my Woocommerce widget. The products are now shown beneath each other, but I’d like them to be lined out on 1 rule (next to each other).
I hope you can help me!
Thx!
Krijn
Hi,
That widget is styled for sidebar use but it’s easy to change. Just add this in a custom CSS plugin:
.product_list_widget {
text-align: center;
}
.product_list_widget li {
width: 30%;
display: inline-block;
}