stinka
03-05-2004, 10:32 PM
I would like a general code for a layout like this:
http://incognito.diary-x.com/
http://incognito.diary-x.com/
|
View Full Version : Can I get a general HTML code for a layout like this? stinka 03-05-2004, 10:32 PM I would like a general code for a layout like this: http://incognito.diary-x.com/ kicker91 03-05-2004, 10:41 PM Basically a main image on top, with a content bar, and a side bar: <table border="0" cellspacing="0" cellpadding="0" width="500px"> <tr><td valign="top"> <img src="bla.gif"> </tr></td><tr><td valign="top" width="60%"> STUFF IN CONTENT </td><td valign="top" width="40%"> STUFF ON SIDEBAR </tr></td></table> stinka 03-06-2004, 02:05 AM Ok, thanks. I'll see if this works. kicker91 03-06-2004, 02:18 AM Oh, by the way, to make it centered, you can add <center> before the table and </center> after it. |