This is an update to my previous post "How To Remove Image Border On Blogger Posts". But this time, it will be easier because the border removal will be done automatically by blogger.
1. Follow this guide on How To Edit The Blogger Template
2. Find .post img or .post-body img. If you didn't find any of those two, proceed to the next step and if you find any of them, then remove them. In removing those, be sure to remove its entire code,
Example, you have to remove the entire code like this.
.post-body img {
margin: 10px;
border: 3px solid #CCC;
}
margin: 10px;
border: 3px solid #CCC;
}
3. Find ]]></b:skin>
4. Add this code ABOVE ]]></b:skin>
.post, .post-body img {
border: 0;
}
border: 0;
}
5. Click Save Template
From now on, everytime you add an image to your blog posts, their borders will be automatically removed once you published them.