• I inserted an image with a transparent background on my ‘about us’ page, but my theme is forcing a border/shadow to be added to the edges of the image and I can’t figure out how to remove it.

    I’m not very handy with the more technical aspects of WordPress. Can someone please tell me how to remove the border/shadow from this image and any future images I add to this website?

    Thanks for your time.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use custom CSS to remove the shadow from the image:

    In WP Dashboard > Customize > Additional CSS

    div.text img {
        box-shadow: none !important;
    }

    Hello,
    I understand your concern, well here is a CSS to unset shadow of image.

    img.wp-image-915 {
        box-shadow: unset !important;
    }

    Please try this, it’s sure working for you. Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t remove image border/shadow’ is closed to new replies.