MyBB.de Forum

Normale Version: Count Forum Viewers
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Poste mal bitte den Inhalt deines aktuellen forumbit_depth2_forum Templates.
<tr>
<td class="$bgcolor" align="center" valign="top"><img src="$theme[imgdir]/$folder.gif" alt="" /></td>
<td class="$bgcolor" valign="top">
<strong><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></strong>
<div style="text-align: right;">$viewscount</div>
<br />
<div class="smalltext">$forum[description]$modlist$subforums</div>
</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$threads</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$posts</td>
<td class="$bgcolor" valign="top" align="right" nowrap="nowrap">$lastpost</td>
</tr>


Das rote hab ich wie beschrieben ersetzt

Nun schauts so aus:
Forumname
1 Benutzer


so wäre es besser:
Forumname 1 Benutzer

links- (forumname) bzw. rechtsbündig (1 Benutzer) klappt schon mal
Alex
Anzeige neben dem Namen des Forums:
Code:
<tr>
<td class="$bgcolor" align="center" valign="top"><img src="$theme[imgdir]/$folder.gif" alt="" /></td>
<td class="$bgcolor" valign="top">
<strong><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></strong> $viewscount
<br />
<div class="smalltext">$forum[description]$modlist$subforums</div>
</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$threads</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$posts</td>
<td class="$bgcolor" valign="top" align="right" nowrap="nowrap">$lastpost</td>
</tr>
Anzeige rechtsbündig:
Code:
<tr>
<td class="$bgcolor" align="center" valign="top"><img src="$theme[imgdir]/$folder.gif" alt="" /></td>
<td class="$bgcolor" valign="top">
<div style="float: left;"><strong><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a></strong></div><div style="float: right;">$viewscount</div><div style="clear: both"></div>
<br />
<div class="smalltext">$forum[description]$modlist$subforums</div>
</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$threads</td>
<td class="$bgcolor" valign="top" align="center" nowrap="nowrap">$posts</td>
<td class="$bgcolor" valign="top" align="right" nowrap="nowrap">$lastpost</td>
</tr>
ja genau so isses schön.
Danke Michael.

Alex
Seiten: 1 2