[Resolved] remove border third woocommerce product

Home Forums Support [Resolved] remove border third woocommerce product

Home Forums Support remove border third woocommerce product

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #647422
    Edwin

    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

    #647470
    Tom
    Lead Developer
    Lead Developer

    Hi try,

    Try this:

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

    Let me know ๐Ÿ™‚

    #647503
    Edwin

    Thanks Tom. That worked!

    #647968
    Tom
    Lead Developer
    Lead Developer

    Awesome, glad I could help ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.