2007-03-03, 04:27 PM
2007-03-04, 09:33 AM
Alright so i suppose you are talking about the forum bit, note that this changes also the background behind the title of the forum and the subforums list.
In Admin CP > Template > Modify / Delete > Expand > Forum bit templates > forumbit_depth2_forum
find
now in Admin CP > Themes > Modify / Delete > Edit
Under Adittional CSS create a new class and replace {$bgcolor} in the previous code with its name.
In Admin CP > Template > Modify / Delete > Expand > Forum bit templates > forumbit_depth2_forum
find
<td class="{$bgcolor}" valign="top">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong> {$viewscount} <div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
now in Admin CP > Themes > Modify / Delete > Edit
Under Adittional CSS create a new class and replace {$bgcolor} in the previous code with its name.
2007-03-09, 02:49 AM
2007-03-09, 01:24 PM
Go into the "postbit_author" templates and expand them, then edit the "offline" and "online" ones. That's what you're after.
2007-03-09, 03:41 PM
Mano Wrote:And Zaher What about this ...
Thank You.
Those normaly uses the smalltext class.. you can create a new class and use it in the postbit_author_user instead of smalltext, and in case you dont want post:x to be styled by this new style you can create a new span around the part you want with the new class
<span class="newclass">
{$lang->postbit_group} {$usergroup['title']}<br />
{$lang->postbit_joined} {$post['userregdate']}<br />
{$lang->postbit_status} {$post['onlinestatus']}{$post['replink']}<br /></span>
2007-03-10, 04:58 AM
thanks a lot.