22nd Jan, 11:06 pm
Most of this still applies to mybb 1.8 for those that are curious. The new ThemeFreak theme will be using this type of mini stat look.
We are using the following HTML
With this CSS (in the global.css)
We are using the following HTML
Code:
<div style="text-align: center;">
<span class="statround">{$stats['numposts']}</span> Total Posts
<span class="statround">{$stats['numusers']}</span> Total Members
<span class="statround">$newestmember</span> Newest Member
<span title="{$recorddate}, {$recordtime}"><span class="statround">{$mostonline['numusers']}</span> Most Online</span>
</div>
<br />
With this CSS (in the global.css)
Code:
.statround {
background: #98c22a;
color: #ffffff;
padding: 4px 10px;
margin-left: 20px;
border-radius: 4px;
}
.statround a:link,
.statround a:visited {
color: #ffffff;
}
.statround a:hover,
.statround a:active {
color: #444444;
}