MyBB Community Forums

Full Version: Portal help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi..

i if i want add news and stuff about the site in a middle how can i do that and i want it have same background as the forum

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td width="*" valign="top">
<tr>
<td class="{$bgcolor}" valign="top"><strong>{$lang->attachments}</strong><br /><span class="smalltext">{$lang->attachments_desc}</span></td>
<td class="{$bgcolor}" valign="top">
<table cellspacing="3" cellpadding="0" border="0">
<tr>
<td colspan="3">
<span class="smalltext">{$lang->attach_quota} <a href="usercp.php?action=attachments">{$lang->view_attachments}</a></span>
</td>
</tr>
{$footer}
</body>
</html>


Thanks for ur help
Hello

In the portal template above

{$announcements}

put

  <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <tr>
	<td class="trow1">Something here</td>
  	</tr>
  </table>
<br />

regards
I have figured out how to duplicate the portals, but how can I customize which forum the 'anncouncements' are picked from? (different for each individual portal).
In only one of the portal.php replace in only the queries

$mybb->settings['portal_announcementsfid']

By the fid you want the announcements to be picked from.

regards