Picture Alignment - FP2000

  • Thread starter Thread starter Dick
  • Start date Start date
D

Dick

This should be simple, but it is driving me crazy. I am trying to put
two pictures in the top box of the home page. One on each side of the
title bar. When I insert the first picture, it positions itself in
the upper-left corner. However, when I add the second picture, it
goes to the lower-right. I have tried everything I can think of to
get them on the same level. What am I doing wrong?

For reference, I am using the personal website template, and a theme.

Dick
 
Dick,

I have a banner with two photos on the far left and far right of myself and
ny wife
This is my code:
<table border>
<tr>
<td width="5%">
<img src="images/display/trevor.jpg" alt=" " width="65" height="65">
</td>

<td>
..............
</td>

<td width="5%">
<img src="images/display/05-04-08-carole.jpg" alt=" " width="65"
height="65">
</td>
</tr>
</table>

It works fine (see my website), but there is a lot of stuff in the second
<td> element which may cause the table to expand to fill the space.

If you can't get them at the far ends, changing the second <td> to <td
width="90%"> may help. (Not sure!)
 
Insert a table into the top shared border with 1 row, 3 columns, place your images into left and
right columns and the banner into the middle column.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Back
Top