Quote:
Originally Posted by criscokid
I'd really appreciate it if someone could give me some help... I want to put the section into two columns so that each user's personal information is nicely aligned.
I guess to do this I need to create a table - my problem is I 'm not hot on tables and can't get it right. Here's the code from my template that creates the "user's information" block:
Code:
<table width="100%" class="tborder" cellspacing="1" cellpadding="6">
<tr>
<td class="thead"><b>$userinfo[username]'s information:</b></td>
</tr>
<tr>
<td class="alt1">
<div class="smallfont">
<b>Profession:</b> $userinfo[field4]<br />
<b>$vbphrase[age]:</b> $userinfo[age]<br />
<b>Sex:</b> $userinfo[field16]<br />
<b>Body type:</b> $userinfo[field20]<br />
<b>Ethnic origins:</b> $userinfo[field21]<br />
</div>
</td>
|
Code:
<table width="100%" class="tborder" cellspacing="1" cellpadding="6">
<tr>
<td class="thead"><b>$userinfo[username]'s information:</b></td>
</tr>
<tr>
<td class="alt1">
<div class="smallfont">
<b>Profession:</b> $userinfo[field4]<br />
<b>$vbphrase[age]:</b> $userinfo[age]<br />
<b>Sex:</b> $userinfo[field16]<br />
<b>Body type:</b> $userinfo[field20]<br />
<b>Ethnic origins:</b> $userinfo[field21]<br />
</div>
</td>
</tr>