The images aligned left and right work fine, center still has border.
CSS at the start of Images
img {
max-width: 98%;
}
.post-format-image {
background: none;
display: block;
float: left;
border: 0;
margin: 0 10px 10px 0;
}
.page .post-format-image {
display: none;
border: 0;
}
Here is the CSS for center
img.centered,
.aligncenter {
border:0;
display: block;
margin: 0 auto 10px;
}