Home Forums WoodMart support forum Remove outline from brand

Remove outline from brand

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

    tdnd
    Participant

    Hello,
    how can I remove the outline border when I add brand name but with Swatch option ON without picture?
    It makes it bolder but it has rectangle outside of the text when you see it in Filter options widget, is there a way to remove it?

    • This topic was modified 2 months, 1 week ago by tdnd.
    #567374

    Hung Pham
    Keymaster

    Hi tntd,

    Thanks for reaching to us.

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

    div.product-design-default .entry-summary:not(.col-lg-4) .wd-product-brands a {
    	box-shadow: none;
    }

    Regards,

    #567397

    tdnd
    Participant

    Hello,
    thank you for the response. I meant the border in Shop filters when Swatch is set to ON, if I am not mistaken is about this code
    .wd-text-style-4 .wd-swatch.wd-text {
    border: 1px solid var(–wd-swatch-brd-color);
    }

    But I do not know how is the correct way to put it in CSS.

    .wd-text-style-4 .wd-swatch.wd-text {
    border: 0px solid var(–wd-swatch-brd-color);
    }

    Or it should be different

    • This reply was modified 2 months ago by tdnd.
    #567583

    Hung Pham
    Keymaster

    Hi tntd,

    Please use below code:

    [class*="wd-swatches"].wd-text-style-4 span.wd-swatch.wd-text {
    	border: none;
    }

    Regards,

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