MyBB Community Forums

Full Version: Add Navigation to Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I don't know if this has been created, but here's mine:

Edit Templates --> Portal
Find:
{$Welcome}

Add Above:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Navigation</strong></td>
</tr>
<tr>
<td class="trow1">
<a href="LINK HERE">TEXT HERE</a><br>
<a href="LINK HERE">TEXT HERE</a><br>
<a href="LINK HERE">TEXT HERE</a><br>
<a href="LINK HERE">TEXT HERE</a><br>
<a href="LINK HERE">TEXT HERE</a>
</td>
</tr>
</table><br />

Enjoy!
Demo: forum.egdome.com/portal.php
thanks men, this is very ussefull
Thanks!

I've updated it, please use that Code =D
ok men!!!

how i can add images to the code??

where says TEXT HERE i want to put an arrow image and text
(2008-08-06, 05:14 AM)Azagthoth Wrote: [ -> ]ok men!!!

how i can add images to the code??

where says TEXT HERE i want to put an arrow image and text

basic html tag:

<img src="urlofpic" alt="" />
thanks men