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.

Re: how do I wrap a paragraph around a picture by Jens

Jens
Tue Mar 08 16:48:16 CST 2005

This is a multi-part message in MIME format.

------=_NextPart_000_0023_01C52439.4CF09C20
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit

In image properties, set the wrapping style you want.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

> -----Original Message-----
> From: Garth [mailto:Garth@discussions.microsoft.com]
> Posted At: 8. marts 2005 20:29
> Posted To: microsoft.public.frontpage.programming
> Conversation: how do I wrap a paragraph around a picture
> Subject: how do I wrap a paragraph around a picture
>
>
> 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.
>

------=_NextPart_000_0023_01C52439.4CF09C20
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
6.5.7036.0">
<TITLE>Re: how do I wrap a paragraph around a picture</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=3D2>In image properties, set the wrapping style you =
want.</FONT>
</P>

<P><FONT SIZE=3D2>Regards Jens Peter Karlsen. Microsoft MVP - Frontpage. =
</FONT>
</P>

<P><FONT SIZE=3D2>&gt; -----Original Message-----</FONT>

<BR><FONT SIZE=3D2>&gt; From: Garth [<A =
HREF=3D"mailto:Garth@discussions.microsoft.com">mailto:Garth@discussions.=
microsoft.com</A>] </FONT>

<BR><FONT SIZE=3D2>&gt; Posted At: 8. marts 2005 20:29</FONT>

<BR><FONT SIZE=3D2>&gt; Posted To: =
microsoft.public.frontpage.programming</FONT>

<BR><FONT SIZE=3D2>&gt; Conversation: how do I wrap a paragraph around a =
picture</FONT>

<BR><FONT SIZE=3D2>&gt; Subject: how do I wrap a paragraph around a =
picture</FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; I'm trying to offset the words in a paragraph =
such that they </FONT>

<BR><FONT SIZE=3D2>&gt; wrap around a picture. Currently the words are =
either above </FONT>

<BR><FONT SIZE=3D2>&gt; or below the picture. I cannot get the paragraph =
to continue </FONT>

<BR><FONT SIZE=3D2>&gt; along side the picture. </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>
</P>

</BODY>
</HTML>
------=_NextPart_000_0023_01C52439.4CF09C20--


Re: how do I wrap a paragraph around a picture by Mike

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.