How can I get rid of the border in the images in my blog? I tried checking the css and changed the border to 0 and still no luck...
How can I get rid of the border in the images in my blog? I tried checking the css and changed the border to 0 and still no luck...
Hi neodan,
In your style.css file, type the following:
img { border: 0px; }
If there are any styles of img tags anywhere in your css file, add the border: 0px; attribute to them as well, to be sure. :)
Cheers,
Matty.
Hi neodan,
In style.css, add border: 0px; to the following declaration, below margin: 0; :
.wp-caption img {
margin: 0;
}
It looks like your typography.css file takes care of images within a tags. The above code is for images within caption tags.
I hope this helps. :)
Cheers,
Matty.
This topic has been closed to new replies.