Ifyou don't want to have border around pictures in your post, even if your theme use it, just add folloving string to your specific picture (use HTML view):
<img src="http://www.blogger.com/picture.jpg" style="border: medium none ; padding: 0pt;" alt="Picture" />
There is also another way, use class within picture's HTML:
<img src="picture.jpg" class="no-border" alt="Picture" />
But also add following to your CSS file:
.no-border { border: none; padding: 0; }
To achieve an effect of double borders around your pictures, add this to your CSS:
Read More......
img, a img {
padding: 3px;
border: 1px solid #01203c;
background: #eee;
}





