Alex Bailey Senior Member
   
Posts: 503 Status: Offline Gender: Male Location: Uk Age: 33 Joined:
pmmsnaim | Mini profile (24th Jul 08 at 12:18am UTC) | | well i got this code so far
 Code: - <font size="2">
- {if:online}X{/if:online}{ifnot:online}X{/ifnot:online}
- <center> {display_name} </center> {if:gender}<img src={gender}.gif>{/if:gender}
It should be all on the same line but its not atm, its showing up on 3 seperate lines | |
ting-tong2k6@hotmail.com |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: Mini profile (24th Jul 08 at 1:08am UTC) | | I'm confused as to what you're asking for support on. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Mini profile (24th Jul 08 at 2:09am UTC) | | As I stated over MSN - use a table to make the whole code, that'll get the whole thing to look like the concept. | |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄4 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | Re: Mini profile (24th Jul 08 at 8:33am UTC) | | <center> is a block level element which causes it to be on its own line. As Wrighty said, you could use a table to display that information:
 Code: HTML - <table width="100%" cellpadding="0" cellspacing="0">
- <tbody>
- <tr>
- <td>
- <font size="2">{if:online}X{/if:online}{ifnot:online}X{/ifnot:online}</font>
- </td>
- <td align="center">
- <font size="2">{display_name}</font>
- </td>
- <td align="right">
- {if:gender}<img src="{gender}.gif">{/if:gender}
- </td>
- </tr>
- </tbody>
- </table>
| |
|
|
Alex Bailey Senior Member
   
Posts: 503 Status: Offline Gender: Male Location: Uk Age: 33 Joined:
pmmsnaim | Re: Mini profile (24th Jul 08 at 3:22pm UTC) | | Thanks , they are on the same line now, but the display name is further on the right then the center. | |
ting-tong2k6@hotmail.com |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | Re: Mini profile (24th Jul 08 at 4:58pm UTC) | | That's due to the differernt sized images/text either side of it!
I just suggest making images/text the same width! | |
|
Alex Bailey Senior Member
   
Posts: 503 Status: Offline Gender: Male Location: Uk Age: 33 Joined:
pmmsnaim | Re: Mini profile (24th Jul 08 at 8:21pm UTC) | | Ah thought so , thanks | |
ting-tong2k6@hotmail.com |
|