• Hi. I would like to remove the borders and shadows on images I present on pages. Can you please tell me how to achieve this.

    Thankyou.

Viewing 3 replies - 1 through 3 (of 3 total)
  • .

    (@techievous)

    You could do

    .entry-content img,
    .comment-content img,
    .widget img,
    .author-avatar img,
    img.wp-post-image {
        box-shadow: none;
        border-radius: 0;
        border: none;
    }

    That should remove border and shadow on every image on the site. If you only want to remove them posts and pages, this should work:

    .entry-content img,
    img.wp-post-image {
        box-shadow: none;
        border-radius: 0;
        border: none;
    }
    Thread Starter Phil52

    (@phil52)

    Thanks for your reply. I’m not a coder so can you please explain where I would find this section in the editor?

    Thankyou!

    Thread Starter Phil52

    (@phil52)

    Hi there Techievous.

    problem solved thanks to your help and advice. Much appreciated!

    Cheers.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove shadow on images’ is closed to new replies.