Replies

Jun 30, 2009 16 years ago
iris
is lagging
User Avatar
Fawn

I'm trying to make a table with this layout:

http://img.photobucket.com/albums/v180/moonlight11/previewizz2.gif

, the right and left images being their own columns and such. Is this possible to do without nesting? (I'm messing with nesting tables to accomplish it now)

Tables confuse me so much :(

What I've got so far (a jumbly mess) is on Viviana's profile

Thanks in advance ^^

Jun 30, 2009 16 years ago
Aureate
is a billionaire
User Avatar

What you need to do is set the rowspan with the HA to 2 and the colspan of the largest textbox to 2. This will just merge the cells. After that all you have to do is specify the heights and widths.

This site will help a lot.

Jun 30, 2009 16 years ago
iris
is lagging
User Avatar
Fawn

Thank you! I've been over that site a few times, it is helpful!

Hmm... Maybe it's something in my other coding (which is a mess too) but I had both of those set like that and it still insisted on putting the box, the one that was supposed to be to the lower right of the HA, underneath instead.

I actually directly copied and pasted a few codes that were supposed to mostly do what I wanted, and it was all messed up. So I don't know what's up :P

I may have figured out how to sort of do it with divs and just a left aligned image, but I still think it would be pretty neat to get it all in one table.

Jun 30, 2009 16 years ago
Sammii
is a sun worshipper
User Avatar

Tables are evil. You're better off with divs anyway. :( Just make the one with the HA float left.

Jul 1, 2009 16 years ago
Aureate
is a billionaire
User Avatar

I tested the coding they put up and it worked fine for me. Just add the widths and heights to these and you should be good to go :)

<table> <tr><td rowspan="2">Your image</td> <td>Box 1</td></tr> <tr><td>Box 2</td></tr> <tr><td colspan="2">Box 3</td></tr> </table>

Please log in to reply to this topic.