Adding Pictures by the side of text

T

That Camera Place

Morning All,

I have a web page that has text in the centre, it's a poem, and I want to
add pictures at the side of the text, running down the page. Frontpage 2000.

Insert picture works fine but not in the position on the page I want.

Help please.

Andrew

Have a look at http://mysite.freeserve.com/mayorofevesham/mayormaking.htm
the poem is at the bottom of the page.
 
S

Stefan B Rusynko

You need to convert the text to a table and the add columns (cells) to the left & right of it for the images

To wrap the poem in table, in Html/Code View scroll down to the line

<p class="MsoNormal" align="center"><font size="4" color="#000080"><b>During the
ceremony Mr Mike Edwards, Evesham's Poet, performed one of his famous Mayoral
poems. It goes like this</b></font></p>

At the end of the line (after </p>) insert the following code

<table border="0" width="100%"><tr><td>Images Here</td><td>

Then scroll down to the last line

<p align="center">&nbsp;</p>

and before it (before <p align...) add:

</td><td>Images Here</td></tr></table>

Switch to Normal/Design View and where you see the text "Images Here" select it and use File Insert Image
- you can right click the table or cells for Table Properties or Cell properties, and you can split the outer cells for multiple
images



| Morning All,
|
| I have a web page that has text in the centre, it's a poem, and I want to
| add pictures at the side of the text, running down the page. Frontpage 2000.
|
| Insert picture works fine but not in the position on the page I want.
|
| Help please.
|
| Andrew
|
| Have a look at http://mysite.freeserve.com/mayorofevesham/mayormaking.htm
| the poem is at the bottom of the page.
|
|
 
T

That Camera Place

Many thanks for the help. It worked.

Regards

Andrew


Stefan B Rusynko said:
You need to convert the text to a table and the add columns (cells) to the
left & right of it for the images
To wrap the poem in table, in Html/Code View scroll down to the line

<p class="MsoNormal" align="center"><font size="4"
color="#000080"> said:
ceremony Mr Mike Edwards, Evesham's Poet, performed one of his famous Mayoral
poems. It goes like this</b></font></p>

At the end of the line (after </p>) insert the following code

<table border="0" width="100%"><tr><td>Images Here</td><td>

Then scroll down to the last line

<p align="center">&nbsp;</p>

and before it (before <p align...) add:

</td><td>Images Here</td></tr></table>

Switch to Normal/Design View and where you see the text "Images Here"
select it and use File Insert Image
- you can right click the table or cells for Table Properties or Cell
properties, and you can split the outer cells for multiple
 
Top