Recent Topics

1 Dec 17, 2012 21:17    

I'm wondering if anyone can give me some CSS help here. I'm curious if there is a relatively easy way to put an image off to the left of the main post area on this page http://jdonofrioessays.com/index.php? I think the main area is the page_wrap, and I'm hoping to have an image over on to the left of it. Is there an easy way to do this with CSS? Any help anyone can provide would be super helpful, I'm not super skilled at writing CSS (I can edit what's already there, but I don't fully understand it). Thanks in advance!

2 Dec 18, 2012 18:22

i think what you are looking for is a relative-absolute hack.Place your image immedieately after page_wrap like so:

<div id="page_wrap"><img id="myimg" width="120" src="img.jpg" alt="" />


css:

#page_wrap {position:relative}img#myimg{position:absolute;left:-120px;}

3 Dec 18, 2012 20:18

Bingo! That's EXACTLY what I needed! Thanks again for like the billionth time - you're amazing!


Form is loading...