MyBB Community Forums

Full Version: Given a box to icons legend
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can i give a box to the icon legend like in the normal mybb theme, like the 1st image i have put, the 2nd image is what it it now and i also want to put the "Mark All Forums Read Forum Team Forum Statistics" row in there but i don't want the logout to be there, can this be made?
it is the same thing.. its just you removed the links from the table.. let me get you the code for it..

in your Index Templates.. open the template Labeled "index"

Find your coding underneath the part:

{$forumstats}
</tbody>
</table>
<br />


change everything underneath that to this:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tr>
		<td class="trow1">
			<table width="100%">
				<tr>
					<td>
						<img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->new_posts}</span><br />
						<img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /> <span class="smalltext">{$lang->no_new_posts}</span><br />
						<img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" style="vertical-align: middle;" /> <span class="smalltext">{$lang->forum_locked}</span>
					</td>
					<td style="vertical-align: top; text-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>
						{$loginform}
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>
{$footer}
</body>
</html>
It worked but now i have double "Mark All Forums Read Forum Team Forum Statistics" I have put a screenshot please take a look and i can i remove the about "Mark All Forums Read Forum Team Forum Statistics" row. Smile
I will do it for you now as im logging into your Admin CP at the moment.
Ok thanks zaher1988.
It should be working now
Thanks it is working now can you tell me how can i do the same thing to another theme Smile
use the same index template codes, i dont think you have different templates there.
hmmmm are some cat_bg missing inside the boards. *screenshots added*



@Did you also check why did the counter view didn't worked?
DragonLord Wrote:hmmmm are some cat_bg missing inside the boards. *screenshots added*

I did not change anything in the theme. Nor the forum display templates.

DragonLord Wrote:@Did you also check why did the counter view didn't worked?


Please read what i have replied in its thread
Pages: 1 2