MyBB Community Forums

Full Version: How can I get a link box for the portal page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have external links that I want to include in a box. I would like this to be placed in the portal. How can I accomplish this?
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Links</strong></td>
</tr>
<tr>
<td class="trow1">
<ul>
<li><a href="placeyourlinkhere">Link 1</a></li>
<li><a href="placeyourlinkhere">Link 2</a></li>
<li><a href="placeyourlinkhere">Link 3</a></li>
<li><a href="placeyourlinkhere">Link 4</a></li>
</ul>
</td>
</tr>
</table>
<br />