View Full Version : alignment problems


i_luv_ryuichi2
07-22-2004, 09:52 PM
I'm having problems with the alignment on a layout I'm making. The bottom of the image on the left does not meet the border.

Go to http://arsenic.yoruu.us/files/firey/index.html to see what it looks like. Scroll all the way down and look at the bottom of the image. What piece of coding should I use to fix this?

Sephira
07-23-2004, 12:05 AM
upon viewing your source i noticed that you did not close your html tag. try adding </html> to the end of it and see if that works.

i_luv_ryuichi2
07-23-2004, 12:09 AM
...It doesn't work...

Sephira
07-23-2004, 12:20 AM
then add the following:

cellspacing="x"

after your cellpadding tag, x being a numerical value.

i_luv_ryuichi2
07-23-2004, 12:40 AM
That only made the border smaller...

kittycat
07-23-2004, 12:58 AM
You have
</td>
<tr>
</table>
That <tr> should be </tr>, don't know if that will help though.
You could try moving those last 3 lines so they're all on the same line as the last image code, sometimes small amounts of 'whitespace' can cause little gaps like that on the page.

i_luv_ryuichi2
07-23-2004, 01:31 AM
Ohmigod, it worked, thank you soo much!