Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #20012
    chris
    Member

    Hi Sakin

    For my “about” page i’m uploading a jpeg image which is a piece on my brand. The image has a shadow box around it i can’t seem to hide. My back ground is white and the back ground of the image is white so it would be nice to get rid of the shadow box so my image blends in.

    I tried

    img.wp-post-image { box-shadow: none; }

    .page .entry-content img {
    box-shadow: none;

    But they didn’t work. I thought i had it covered all ready as i have

    .site { box-shadow: none; }

    already in my custom CSS

    Any help always massively appreciated

    Thanks man

    #20017
    Sakin
    Keymaster

    @chris: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-content img { box-shadow: none; }

    Your css should have worked but you forgot to close the curly bracket

    .page .entry-content img {
    box-shadow: none;

    This should be as

    .page .entry-content img {
    box-shadow: none;
    }

    If you still cannot then send me your site URL and then I will check in.

    #20029
    chris
    Member

    Thanks mate!!!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘media image shadow box drop’ is closed to new replies.