I need to bring .post_entry(right side) up so that it’s level with .post_info(left side.
When I attempted to do so using #main .post_entry p {margin-top: -82px}, I caused an overlap of images and text. How do I move the element up without causing an overlap?
Thanks.
My live site- http://whskytngfxtrt.com

You are constructing two paragraphs inside
post_entry, one for the image and one for the text. Instead of having two paragraph’s, have one and put a break<br />between the image and the text. That will fix it.You will still need the
margin-top: -82px;for the paragraph.I have made two jsfiddle’s. The one below has two paragraph’s – where the text disappears behind the image.
Broken jsFiddle
The second one below, has one paragraph with a line break between the image and the text…
Working jsFiddle