How can I give these Wordpress images room to breathe?
June 1, 2008 9:05 PM
Subscribe
The images on the front page of my Wordpress blog are all squashed up against the text, while the single-post images are not. Why is this?
Front page.
Single post view of same post.
I've searched through the CSS and templates, but my tiny bit of CSS cut-and-paste knowledge isn't helping. Last time I posted to wordpress.org, I didn't get an answer. Any ideas? Thanks!
posted by miniminimarket to computers & internet (5 comments total)
http://www.jessicasuarez.com/wp-content/themes/monochrome_lite/style.css
The CSS looks like this:
#feature p img {
margin: 7px 0 2em 0;
}
That first zero is what's making it not have any whitespace on the right side of the image. Change it to something like the following and you should be all set.
#feature p img {
margin: 7px 1em 2em 0;
}
posted by ssmith at 9:41 PM on June 1, 2008