Sul mio blog pecciola.com non riesco a capire come togliere il bordo nero da tutte le immagini dei post.
Ecco il css in questione (almeno credo) :

/* Begin Images */
p img {
padding: 0;
max-width: 100%;
border:0;
}

/* Using 'class="alignright"' on an image will (who would've
thought?!) align the image to the right. And using 'class="centered',
will of course center the image. This is much better than using
align="center", being much more futureproof (and valid) */

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
border:0;
}

img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
border:0;
}

img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
border:0;
}

.alignright {
float: right;
}

.alignleft {
float: left
}
/* End Images */


Dove devo intervenire?

Grazie!