• Resolved calli2.0

    (@calli20)


    Hello,
    how I can delete border and shadow from my images?
    I try it in style.css but it dosn´t work.

    .wp-post-image {
    	margin:10px auto 3px;
    	display: block;
    	border-bottom: 5px solid #bbb;
    	background: #fff;
    	border: 1px #ccc solid;
    	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    	box-shadow: 0 1px 3px rgba(0,0,0,0.3); }

    Thank you! Greetings from germany

Viewing 1 replies (of 1 total)
  • Hey there calli2.0,

    This can be done by adding some custom CSS. The easiest way to do that, if your theme doesn’t already have custom CSS tab, would be to add it in your site using the following plugin

    http://ww.wp.xz.cn/plugins/simple-custom-css

    Once the plugin is installed and activated you can add this code to Appearance >> Custom CSS:

    .wp-post-image {
    border-bottom: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

    This should remove the border and shadow the featured image. Please let me know if this helps 🙂

    Best regards,
    Bojan

Viewing 1 replies (of 1 total)

The topic ‘Image border and shadow’ is closed to new replies.