This topic was locked 6th Jul 08 at 6:14pm by Michael |
Tyson Full Member
Posts: 164 Status: Offline Gender: Male Location: Canada Eh? Joined: 9th Dec 2007
pmmsnxfire | [F] Mini Profile Help (Wed 30th Apr 2008 at 8:29pm) | | 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 | |
Member #12 |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined: 16th Dec 2007
Additional Groups: Coding Team
pmvForum | Re: Mini Profile Help (Wed 30th Apr 2008 at 8:32pm) | | what are you trying to get it to look like? | |
|
Tyson Full Member
Posts: 164 Status: Offline Gender: Male Location: Canada Eh? Joined: 9th Dec 2007
pmmsnxfire | Re: Mini Profile Help (Wed 30th Apr 2008 at 11:43pm) | | 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? | |
Member #12 |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined: 16th Dec 2007
Additional Groups: Coding Team
pmvForum | Re: Mini Profile Help (Thu 01st May 2008 at 6:41am) | | I'll add it to my test forum later, and fix it up!
| |
|
Tyson Full Member
Posts: 164 Status: Offline Gender: Male Location: Canada Eh? Joined: 9th Dec 2007
pmmsnxfire | Re: Mini Profile Help (Thu 01st May 2008 at 2:22pm) | | Thanks | |
Member #12 |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined: 16th Dec 2007
Additional Groups: Coding Team
pmvForum | Re: Mini Profile Help (Thu 15th May 2008 at 3:27pm) | | 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> | |
|