I’m trying to figure out how to remove (or even change) the border around the images in posts (specifically .pngs) but can’t find the code that seems to alter it – or when I think I do, nothing changes.
can anyone guide me in the right direction please?
I believe this is the code you are looking for:
.entry-content a img,
#attachment-nav a img {
max-width: 98.5%;
padding: 0.8%;
box-shadow: 0 0 3px #EEE;
background: #FFF;
border: #EEE 1px solid;
}
It’s located in style.css line 426. You probably want to remove it completely.
I’ll give that a try – thanks!