Text that wraps around an image

liunx

Guest
Take a look at the file. Basically, I want the text to appear higher up than what it currently does, but the image prevents this from happening. I know basically any news article has images placed through out the article, but the text wraps around the images and there's no real break in the text. I haven't begun to weed through the code that those sites use, so I was hoping somebody here could show me how to do it and explain what's going on so I don't just do a cut and paste job.Text that wraps around an image

Without looking at the file, the normal way to make text wrap around somthing is to float it.

eg

<p> text text text text text <img style="float:left;" ...> text text text text text text text text</p>
 
Back
Top