MyBB Community Forums

Full Version: Center On/Off Icons -- Remove Footer Bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I center my on/off icons in index view? Also, how can I remove one of the "Group Legend" bars at the bottom of my theme?
MaxLV Wrote:How can I center my on/off icons in index view?
Do you mean center them vertically?
If so, edit the forumbit_depth2_forum template (AdminCP -> Templates -> Modify -> <select templateset> -> Forum Bit Templates -> forumbit_depth2_forum)
Find:
<td class="{$bgcolor}" align="center" valign="top"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>
Replace with:
<td class="{$bgcolor}" align="center" valign="middle"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" /></td>

MaxLV Wrote:Also, how can I remove one of the "Group Legend" bars at the bottom of my theme?
You'll probably have to check your index templates for that.
I've fixed them both, thank you.