View Full Version : Horizontal/Vertical space


Evanescence06
09-21-2003, 06:17 PM
I have a page where there are two images and I want them perfectly right above one another, but when I try to do this there is a big space between them! Does anyone know what to do? Thanks ahead of time for any help.

MaGiCSuN
09-21-2003, 06:24 PM
have you put <br> or <p> between the two images? if you put it like thsi then it should work:

<img src="blah.html"><br><img src="blah.gif">

love,
Mirna

Evanescence06
09-21-2003, 06:40 PM
I've tried it. It does make the space smaller, but there is still a small space there.

MaGiCSuN
09-21-2003, 06:43 PM
are both images same size? if so put them in a table:

<table border=0 height="#" width="width of the image here" cellspacing=0 cellpadding=0>
<tr><td valign="top">
images here
</td></tr></table>

becuae you have set the width to the width for ONE image, the other image should automatically go to the next line. Don't put any <br> or <p> tags in here, just the images only, and put them right behind each other. So the last > should connect with the next <img

Love,
Mirna

Evanescence06
09-21-2003, 06:54 PM
Yay it works. Thanks!