The default blogger templates show image border and shadow by default so if you want to remove this image border or shadow follow these steps:
Step 1. Go to Blogger Dashboard > Template > Customize > Advanced > Add CSS - paste the following code
.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 Apply to blog, its remove image border or shadow
Alternate
Step 2. If the above method doesn't work use this second method
1. Go to Blogger Dashboard > Template > Edit HTML
2. Search (CTRL + F) the following code
border: 1px solid $(image.border.color);
-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
3. Delete it and Save the template.
Post a Comment