Quote:
Originally Posted by skorzguy
(Post 1225317)
Here's what I did to make everything look good in the navbar and postbit template. It's probably not coded correct but it worked.
postbit template:
-----------------------------------------------------------------------------------------------------------
Find:
------
<tr>
<if condition="$show['avatar']"><td class="alt2" valign="top"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></td></if>
** you probably won't have the valign="top", I added this to make sure the avatar was on top.
Add above:
--------------
<!-- /show teams -->
<tr> <div align="left">
<if condition="$post['nflteam']">
<!-- current team -->
<fieldset><legend>My Teams</a></legend>
<if condition="!empty($post[nflteam])">
$vbphrase[my_nflteam]: <img src="$vboptions[bburl]/images/nfl/$post[nflteam].gif" border="0" /></if>
<if condition="!empty($post[nbateam])">
$vbphrase[my_nbateam]: <img src="$vboptions[bburl]/images/nba/$post[nbateam].gif" border="0" /></if>
<if condition="!empty($post[mlbteam])">
$vbphrase[my_mlbteam]: <img src="$vboptions[bburl]/images/mlb/$post[mlbteam].gif" border="0" /></if>
<if condition="!empty($post[nhlteam])">
$vbphrase[my_nhlteam]: <img src="$vboptions[bburl]/images/nhl/$post[nhlteam].gif" border="0" /></if>
<if condition="!empty($post[ncaateam])">
$vbphrase[my_ncaateam]: <img src="$vboptions[bburl]/images/ncaa/$post[ncaateam].gif" border="0" /></if>
<if condition="!empty($post[nascardriver])">
$vbphrase[my_nascardriver]: <img src="$vboptions[bburl]/images/nascar/$post[nascardriver].gif" border="0" /></if>
<if condition="!empty($post[fifateam])">
$vbphrase[my_fifateam]: <img src="$vboptions[bburl]/images/fifa/$post[fifateam].gif" border="0" /></if>
</fieldset></if>
</div></tr>
<!-- /show Teams -->
It's not best code, maybe someone can fix it and make it better.
|
Thank you for this. Great positioning. The only thing to be fixed is that line in red, but I guess you just mistyped it ;) I believe it has to be with
<if condition="$show['member']">
But again, great positioning and I'm glad I found your post. :)
Cheers everyone! :up:
|