MyBB Community Forums

Full Version: Forum View "trow1"..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ive got my own MyBB forum, http://playerstech.com

[Image: Uni5hVYefT.png]

I want to change the background, I know how. By customizing the
trow1 ect to change the colour, but that then changes the whole board
throughout.

I was wondering which template I can edit to edit that separately?
In forumbit_depth2_forum template, replace trow1 to another class something like trow3 .
Next define this class in global.css , like this;
.trow3{
font-size: 11px;
font-family: Arial;
color: #efefef;
background: #969696;
}
I don't have that line of coding in my 'forumbit_depth2_forum' template.

Here's what I currently have..

<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>

<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div> 

</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td></tr>
Replace {$bgcolor} with trow3
(2012-05-17, 07:55 PM)Yaldaram Wrote: [ -> ]Replace {$bgcolor} with trow3

Thanks a lot man!