2014-01-14, 07:42 PM
2014-01-14, 09:50 PM
To get a different background for your forum rules open the template Forum Display Templates-->forumdisplay_rules.
In the deafult theme it`look like this:
Change the trow1 to rules. Now it should be looking like this:
Now open your global.css (Advaned Mode) and add at the end of it:
Now your forum rules will be dispülayed with an alternative background. Here is a little screenshot to see how it works.
[attachment=30849]
PS: You can style the .rules class however you want. My sample is maybe not really pretty.
In the deafult theme it`look like this:
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$foruminfo['rulestitle']}</strong></td>
</tr>
<tr>
<td class="trow1"><span class="smalltext">{$foruminfo['rules']}</span></td>
</tr>
</table>
<br />
Change the trow1 to rules. Now it should be looking like this:
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$foruminfo['rulestitle']}</strong></td>
</tr>
<tr>
<td class="rules"><span class="smalltext">{$foruminfo['rules']}</span></td>
</tr>
</table>
<br />
Now open your global.css (Advaned Mode) and add at the end of it:
.rules {
background: #ff0000;
padding: 5px;
color: #fff;
}
Now your forum rules will be dispülayed with an alternative background. Here is a little screenshot to see how it works.
[attachment=30849]
PS: You can style the .rules class however you want. My sample is maybe not really pretty.

2014-01-15, 11:22 AM
@Real Kenny thanks very much buddy that is exactly I was looking for

2014-01-15, 11:48 AM
Glad if I could help you. 
