Mike
Tue Mar 08 16:54:14 CST 2005
You need to do a float to have a block of text to the side
of an image and wrap around it
<p>
<img src="url" alt="" style="float:left">
All of your text which will be to the right as the image
is floating to the left
</p>
You could also use a table to offset the text, but it will
not wrap around the image
<table>
<tr>
<td>
<img src="url" alt="" style="float:left">
</td>
<td>
All of your text which will be to the right as the
image is floating to the left
</td>
</tr>
</table>
Here is a live exampl:
http://mikem.ecinet.net/projects/samples.htm
"Garth" <Garth@discussions.microsoft.com> wrote in message
news:BA9D5B9B-1529-46B3-A91D-E953DFEB07C4@microsoft.com...
: I'm trying to offset the words in a paragraph such that
they wrap around a
: picture. Currently the words are either above or below the
picture. I cannot
: get the paragraph to continue along side the picture.