• Hi there, I am running into a new problem where this theme (Absolum) automatically alters images to add a border/shadow around them.

    You can see here what I mean, these flags should not have a border/shadow, but they are appearing when I publish:
    https://www.rustwalker.com/dev-team/

    Any way to alter the .css file to remove these borders/shadows?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Your style.css has the following code in the =Images section.

    #content img, #content .wp-caption {
    background:url("images/image-back.png") no-repeat right bottom;
    
    padding:0 4px 8px 0;
    }

    Adding it like this to a custom.css or the very bottom of style.css should solve your problem.

    #content img {
    background:url("") no-repeat right bottom;
    
    }
    Thread Starter Rustwalker

    (@rustwalker)

    Thank you, worked perfectly by adding your code to the bottom of the style.css!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I remove image shadow in pages/posts?’ is closed to new replies.