Site logo

Archived topic

remove border third woocommerce product

3 replies · Started by Edwin on August 13, 2018

Viewing posts 1–4 of 4

Hi

I am having right border for woo commerce products using this css

.wc-columns-3 ul.products li.product {
border-right: 1px solid #f5f5f5;
}

How to remove the border from the third product box.

Thanks

Edwin

Hi try,

Try this:

.wc-columns-3 ul.products li.product:nth-child(3n) {
    border: 0;
}

Let me know :)

Thanks Tom. That worked!

Awesome, glad I could help :)

This archived topic is closed to new replies.