Home Forums WoodMart support forum How to remove category image shadow

How to remove category image shadow

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

    Kahan Ryan
    Participant

    Hi,
    1. How to remove category image shadow

    .cat-design-alt .category-image-wrapp {
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.12);
    box-shadow: 1px 1px 2px rgba(0,0,0,.12);
    position: relative;
    overflow: hidden;
    }

    2. how to resize category image size

    #49490

    Hello,

    In order to remove the shadow, change this line in the code: box-shadow: 1px 1px 2px rgba(0,0,0,.12); in the following way:

    .cat-design-alt .category-image-wrapp {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    }

    If the code is not workable, give me the link where you want to remove the shadow I will generate another code.

    All the images sizes are set in Appearance > Customize > WooCommerce > Product images.

    Best Regards

    #49502

    Kahan Ryan
    Participant

    thank you

    it works

    #49520

    You are always welcome. If you have any questions feel free to contact us.

    Best Regards

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