Hi all -
I am trying to figure out how to place a 300x250 image in the middle of a block of text that ranges in length from 750 to 1,000 words. The block of text is held in the {body} field of our weblog. The problem is, I can’t figure out how to place the image in the middle of the text, only at the top of the body of text, or at the bottom.
If I do this:
<img src="" />
{body}
the image displays at the top.
And if I do this:
{body}
<img src="" />
the image displays at the bottom.
I want the image displayed in the body—float: left—so that the text wraps around it. I tried using absolute positioning to force the image down into the page by 700 pixels, like this:
.300x250_ad {
position: absolute;
top: 700px;
left: 0;
}
but this plops the image right on top of the text, hiding it. The position was correct, though.
Does anyone have a suggestion?
Thanks!
