Problem: I can't get this lined up properly. I've tried editing the colspans but it still won't go?
Code:
- <table width="100%" border="0">
- <tr>
- <td>
- {if:avatar}{avatar}{/if:avatar}
- </td>
- <td>
- {display_name}
- <br />
- {rank}
- <br />
- {if:online}Status: <b>Online</b>{/if:online}
- {ifnot:online}Status: Offline{/ifnot:online}
- {if:custom_title}<br />{custom_title}{/if:custom_title}
- </td>
- <position="right">
- <td>
- Joined: {joined}
- {if:location}<br />Location: {location}{/if:location}
- {if:age}<br />Age: {age}{/if:age}
- {if:gender}<br />Gender: {gender}{/if:gender}
- {ifnot:gender}<br /><i>Gender Not Specified</i>{/ifnot:gender}
- <br />
- Posts: {posts}
- <br />
- {additional_info:SEPERATOR}
* Custom Above Mini-Profile
what are you trying to get it to look like?
Umm...
The way I placed it in the coding should explain. It's hard to explain it by typing it out? Basically, first two <td> would be on the left, and the third would be far right. I have it working fine but when I go to view a thread, it seems like there's too many columns so the thread message only goes 3/4 of the way across while the mini-profile does the whole length.
Did that make any sense?
I'll add it to my test forum later, and fix it up!![]()
Thanks![]()
You need to learn tables!There was no ending </tr></table> therefore it didn't work... Fixed version:
<table width="100%" border="0">
<tr>
<td>
{if:avatar}{avatar}{/if:avatar}
</td>
<td>
{display_name}
<br />
{rank}
<br />
{if:online}Status: <b>Online</b>{/if:online}
{ifnot:online}Status: Offline{/ifnot:online}
{if:custom_title}<br />{custom_title}{/if:custom_title}
</td>
<td align='right'>
Joined: {joined}
{if:location}<br />Location: {location}{/if:location}
{if:age}<br />Age: {age}{/if:age}
{if:gender}<br />Gender: {gender}{/if:gender}
{ifnot:gender}<br /><i>Gender Not Specified</i>{/ifnot:gender}
<br />
Posts: {posts}
<br />
{additional_info:SEPERATOR}
</td>
</tr>
</table>