placing images

admin

Administrator
Staff member
Okay, this is what I have. I have an image that is bigger and being placed on the right side of the page. I have another image that is a least half the size of the image that is on the right, this image is placed next to the bigger image on the left-top. <br />
<br />
Now, the one on the left is the same size of another image that I am trying to place underneath it-how do I do that.<br />
<br />
It wants to sit on the left but on the corner of the bigger image. Thanks for the help.<!--content-->at your code.:D<!--content-->Put your images in a new table:<br />
<table width="80%" border="1" cellspacing="5" cellpadding="5" bordercolor="#800080" align="center"><br />
<tr><br />
<!-- Row 1 Column 1 --><br />
<td ><br />
image small 1</td><br />
<!-- Row 1 Column 2 --><br />
<td rowspan="2"><br />
image big<br />
</td><br />
</tr><br />
<tr><br />
<!-- Row 2 Column 1 --><br />
<td ><br />
image small 2<br />
</td><br />
<!-- Row 2 Column 2 part of big image--><br />
<br />
</tr><br />
</table><!--content-->It worked thanks so much!:rocker:<!--content-->
 
Back
Top