html help

biferi

Daemon Poster
Messages
690
I have 3. photos I am puting on a web site and I would like to have them Sager.

I put one on the top left and it works then I use the <BR> tage to go under it.

And the next photo I want to go to the right and it works it is looking like the photo are stagering.

Then I use the <BR> again to go under and then I want it to go to the left.


<img src="photo A1.jpg" width="550" alt="" border="0" align="">
<BR>
<img src="photo A2.jpg" width="550" alt="" border="0" align="RIGHT">
<BR>
<img src="photo A3.jpg" width="550" alt="" border="0" align="">


So they sould go like this
Left right left but the bottume one somehow put itself right underneeth of the firsth on.


I would like them to go down the page in a Z like manner.

What did I doo rong??
 
Try this:
Code:
<img src="root_to_image1.png" />
<img src="root_to_image3.png" />
<br />
<img src="root_to_image2.png" />
<img src="root_to_image4.png" />
 
I do not want 2 photos right next to the other.

Let me explaine what I would like to do this way??

Say you have 3 photos one ontop of the other.
So you have 3 photos going from the top of the page down.

Then the top photo you want to the left side and the middle photo you want to the right side.

And the bottum photo you want to the left side.

This is what I want
 
Probably not the best way of doing it, but:

Code:
<table border="0" width=100%>
<tr>
  <td><img src="picture1.jpg" width="550" alt="" border="0"</td>
  <td />
  <td />
</tr>
<tr>
  <td />
  <td />
  <td><img src="picture2.jpg" width="550" alt="" border="0" style="float:right"</td>
</tr>
<tr>
  <td><img src="picture3.jpg" width="550" alt="" border="0"</td>
  <td />
  <td />
</table>
 
Back
Top Bottom