MyBB Community Forums

Full Version: Make the below centered...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello..How do I make the Icons below centered?
Look at the Screenshot..

http://img105.imageshack.us/img105/235/f...red4ql.gif
You have to edit your templates. You'll find the code in the template Index Page Templates -> index.
Heloo there

in Admin CP > Templates > Modify / Delete > Expand > index page templates > index

find

<br />
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<tr>
<td class="trow1">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="middle" align="left">
<table cellspacing="0" cellpadding="2" border="0">
<tr><td><img src="$theme[imgdir]/on.gif" alt="$lang->new_posts" /></td><td class="trow"><span class="smalltext">$lang->new_posts</span></td></tr>
<tr><td><img src="$theme[imgdir]/off.gif" alt="$lang->no_new_posts" /></td><td class="trow"><span class="smalltext">$lang->no_new_posts</span></td></tr>
<tr><td><img src="$theme[imgdir]/offlock.gif" alt="$lang->forum_locked" /></td><td class="trow"><span class="smalltext">$lang->forum_locked</span></td></tr>
</table>
</td>
<td valign="top" align="right">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr><td valign="top" align="right">
<span class="smalltext">$logoutlink<a href="misc.php?action=markread">$lang->markread</a> | <a href="showteam.php">$lang->forumteam</a> | <a href="stats.php">$lang->forumstats</a></span>
</td></tr>
$loginform
</table>
</td></tr>
</table>
</td></tr>
</table>

then replace it with

<br />
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<tr>
<td class="trow1" align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" align="right">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr align="center">
  <td valign="top"><div align="center"><img src="$theme[imgdir]/on.gif" alt="$lang->new_posts" />   <span class="smalltext">$lang->new_posts &nbsp;</span><img src="$theme[imgdir]/off.gif" alt="$lang->no_new_posts" /> <span class="smalltext">$lang->no_new_posts &nbsp;</span><img src="$theme[imgdir]/offlock.gif" alt="$lang->forum_locked" /><span class="trow"><span class="smalltext">$lang->forum_locked</span></div>    </td>
  </tr>
<tr><td align="right" valign="top">
<span class="smalltext">$logoutlink<a href="misc.php?action=markread">$lang->markread</a> | <a href="showteam.php">$lang->forumteam</a> | <a href="stats.php">$lang->forumstats</a></span>
</td></tr>
<div align="right">$loginform</div>
</table>
</td></tr>
</table>
</td></tr>
</table>

regards