Okay, I got every thing sorted and it is working great. Every thing is in the tabs I want and I even got the .info class to work.
Now I'm having a very odd issues. For some of the users (they are not in the same usergroups) the text does not appear the same as other users in some of the tabs (not all tabs). Also, for these same users, my Reputation icon that is assigned to tab one only, shows up at the top of all the other tabs.
If you would like to have a look,
see posts 18-20 on this thread. User Jmac, post #19 is one of the members having this odd issue. Post #18 and #20 do not have this issue.
Just encase you want it, here is my code for the tabs...
Code:
<!-- BEGIN POSTBIT TABS -->
<div id="postbittabs$post[postid]" class="djdot">
<ul>
<li><span title="User Info"><a href="#" rel="tab1$post[postid]" id="selected$post[postid]"> </a></span></li>
<li><span title="Game Info"><a href="#" rel="tab2$post[postid]"> </a></span></li>
<li><span title="Files Info"><a href="#" rel="tab3$post[postid]"> </a></span></li>
<li><span title="Medals"><a href="#" rel="tab4$post[postid]"> </a></span></li>
<li><span title="Contact"><a href="#" rel="tab5$post[postid]"> </a></span></li>
</ul>
<br style="clear: left" />
</div>
<div class="smallfont" align= "left" >
<!--TAB 1 CONTENT -->
<div id="tab1$post[postid]" class="tabcontent" >
<div class="info">$vbphrase[posts]: $post[posts]</div>
<div class="info"><if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if></div>
<if condition="$post['field7']"><div class="info">Group: $post[field7]</if></div>
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]</span> </if><div><span id="repdisplay_$post[postid]_$post[userid]">$post[reputationdisplay]</span></div></if>
</div>
<!-- TAB 2 CONTENT -->
<div id="tab2$post[postid]" class="tabcontent">
<if condition="$post[field6]"><div class="info">Favorite Plane: $post[field6]</div></if>
<if condition="$post[field21]"><div class="info">Side: $post[field21]</div></if>
<if condition="$post[field22]"><div class="info">War: $post[field22]</div></if>
</div>
<!-- TAB 3 CONTENT -->
<div id="tab3$post[postid]" class="tabcontent">
<if condition="$post[downloads]>0"><div class="info">{$vbphrase['ecdownloads_downloads']}: $post[downloads]</div></if>
<if condition="$post[uploads]>0"><div class="info"><a href="member.php?$session[sessionurl]u=$post[userid]&tab=dl2modification">{$vbphrase['ecdownloads_uploads']}: $post[uploads]</a></div></if>
<div class="info"><a href="album.php?u=$post[userid]" title="View $post[username]'s Album" rel="nofollow"><img src="images/buttons/add_album.png" alt="Member's Picture Albums" border="0"/></a> </div>
</div>
<!-- TAB 4 CONTENT -->
<div id="tab4$post[postid]" class="tabcontent">
<if condition="$post[showuserawards]"><div class="info">$post[userawards]</div></if>
</div>
<!-- TAB 5 CONTENT -->
<div id="tab5$post[postid]" class="tabcontent">
<div class="info">
<if condition="$show['pmlink'] OR $show['emaillink'] OR $post['userid'] AND $show['member']">
Send $post[username]:<br /></if>
<if condition="$show['pmlink']">
<a href="private.php?$session[sessionurl]do=newpm&u=$post[userid]" rel="nofollow"><phrase 1="$post[username]">a Private Message</a><br />
</if>
<if condition="$post['userid'] AND $show['member']">
<a href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$post[userid]">a Friend Request</a>
</if></div>
<br />
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>
</div>
</div>
</div>
<script type="text/javascript">
var mytabs=new ddtabcontent("postbittabs$post[postid]")
mytabs.setpersist(false)
mytabs.setselectedClassTarget("link")
mytabs.init()
</script>
<!-- END POSTBIT TABS -->
Sorry to be such a bother!