Could you take a minute to look at this site: www.doverma.org and let me know what to do in the css so that the pictures on the homepage line up with the headings? I changed the h3 to have margin-top:0px which moved the headings up just a little off from the pics. I can't seem to find how to do the same thing with the pics. Thanks if you can help.
The problem is here: .PostContent img { margin-top: 1em; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; } s_ruben was right in that you need to change that margin-top; if his code didn't work then it's a specificity issue. Though with the class heavy train wreck of nonsense turdpress saddles you with, there might not be a lot you can do about that without resorting to !important.
That got me looking in the right direction. The answer was to change .PostContent img { margin: 1em; } to .PostContent img { margin: 0.5em; } Thanks.