Friday 23 November 2012

Remove Border And Shadows From Your Blogger Images

If you want to remove borders and shadows of your images in your blog then here I have a simple trick to remove border and shadows of your blogger images.We will do this with using a small piece CSS code.Just follow my steps carefully.

How To Remove Border & Shadows Of Your Blogger Images?


  • Go to Blogger Dashboard > Design > Edit HTML
  • Download/Backup your template
  • Now search for ]]></b:skin>
  • Add below code just above ]]></b:skin>


  • 
    .post-body img, .post-body .tr-caption-container, .Profile img, .Image img,
    .BlogList .item-thumbnail img {
        padding: none !important;
        border: none !important;
        background: none !important;
        -moz-box-shadow: 0px 0px 0px transparent !important;
        -webkit-box-shadow: 0px 0px 0px transparent !important;
        box-shadow: 0px 0px 0px transparent !important;
    }
    
    Now save your template and refresh your blog.Now your blog should appear without any borders and shadows.

    No comments:

    Post a Comment