Border around product row
-
I have one product per row in my store.
I am trying to add a border to the products so that the next and previous products get distinguished clearly.
I am using the following code:add_action( 'wp_head', function () { ?> <style> .woocommerce ul.products li.product { width: auto; border: 1px solid #ccc; box-sizing: border-box; padding: 10px; text-align: center; margin-bottom: 25px; } </style> <?php } );
This is adding a border to the product on the desktop site but on the mobile device display, it is adding the border to the image only. The image title and price info are outside the border. I want to have everything inside the order.
Please help me with the correct CSS.
Desktop view (displaying as expected): https://imgur.com/2XxVMZf
Mobile view: https://imgur.com/QioFjoc
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Border around product row’ is closed to new replies.