Home Forums WoodMart support forum Brand logo border

Brand logo border

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

    infantdeco
    Participant

    Hello, how i can remove the border from logo in product page?

    picture:
    https://i.imgur.com/Xgh3mNm.png

    thanks in advance 🙂

    #91785

    Hello,

    Please add the code to the Theme Settings > Custom CSS > Global

    .product-image-summary .woodmart-product-brands a {
        -webkit-box-shadow: 0 0 2px rgba(0,0,0,0);
        box-shadow: 0 0 2px rgba(0,0,0,0);
    }

    Best Regards

    #91792

    infantdeco
    Participant

    Hello, thank you so much is working, but on mouse over have border also, how to remove also for mouse over?

    thanks

    #91823

    Hello,

    Please replace the code with this one:

    .product-image-summary .woodmart-product-brands a:hover,
    .product-image-summary .woodmart-product-brands a {
        -webkit-box-shadow: 0 0 2px rgba(0,0,0,0);
        box-shadow: 0 0 2px rgba(0,0,0,0);
    }

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)