stinka
03-30-2003, 02:54 AM
Go to this page: http://anxious.diary-x.com/journal.cgi?action=current and as soon as the words appear click stop on your toolbar at the top of the screen. I really want to know how to get that. It's basically a two column table (almost) centered. Does anyone have a code for that? I'm not talking about her picture layout and stuff because I don't want to copy her. But I want to know how make a two colum table like hers, without a line in the middle and (almost) centered.
Thanks.
Xiphias
03-30-2003, 03:01 AM
That person uses divs, but I'm sure you could use something like this.
<table border=0 width=550 align=center>
<tr>
<td style="font-family: verdana; font-size: 11px;">This is your navigational part
</td>
<td style="font-family: verdana; font-size: 11px;"> This is your content part
</td>
</tr>
</table>
zangerbanger
03-30-2003, 03:05 AM
It's just a table without borders. It is aligned into the center using div layers. Here's how you do it:
<div style="position: absolute; top: #; left: #; z-index: #; width: #; height: #;">
<table width="#" height="#" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
EVERYTHING IN COLUMN # 1
</td>
<td>
EVERYTHING IN COLUMN # 2
</td>
</tr>
</table>
</div>
Make sure you replace everything in bold with your own information. Hope it helps!