MyBB Community Forums

Full Version: How do I...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
that text cant be found in header_welcomeblock_member!
i re-installed it but there were no toplinks so i added them again by adding
<div class="menu">
                <ul>
<center><li><a href="http://www.amywinehouseforum.co.uk/search.php">search</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/memberlist.php">memberlist</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/calendar.php">calendar</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/misc.php?action=help">help</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/pages.php?page=rules">rules</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/misc.php?action=staffapp">staff vacancies</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/pages.php?page=affiliates">affiliates</a></li>

<li><a href="http://www.amywinehouseforum.co.uk/gallery">gallery</a></li></center>
                </ul>

but there's still weird lines inbetween the links...
is there another way to add links to the top of the page cos i need those links there!
You add those links to header_welcomeblock_member not in the header template

Also post your header_welcomeblock_member template here
Quote:<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" align="center">
<tr>
<td class="trow1" width="100%"><navigation></td>
<td class="trow2" nowrap="nowrap" style="padding:6px">
{$lang->welcome_back}<br />
{$lang->welcome_current_time}<br />
<a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
</td>
</tr>
</table>
<div align="center">
<table class="tborder" border="0" cellspacing="0" cellpadding="0" align="center" style="border-top-width:0px">
<tr align="center">
<td class="welcome"><a href="{$mybb->settings['bburl']}/usercp.php">{$lang->welcome_usercp}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></td>
<td class="welcome"><a href="search.php?action=getnew">{$lang->welcome_newposts}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></td>
<td class="welcome">
<a href="$settings[bburl]/search.php">{$lang->toplinks_search}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/member.php?action=logout&uid={$mybb->user['uid']}">{$lang->welcome_logout}</a></td>
</tr>
</table>
</div>

where shall i add the links?
Replace with this.

You just needed to change the logout link at the bottom, should work unless I've missed something.

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" align="center">
<tr>
<td class="trow1" width="100%"><navigation></td>
<td class="trow2" nowrap="nowrap" style="padding:6px">
{$lang->welcome_back}<br />
{$lang->welcome_current_time}<br />
<a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
</td>
</tr>
</table>
<div align="center">
<table class="tborder" border="0" cellspacing="0" cellpadding="0" align="center" style="border-top-width:0px">
<tr align="center">
<td class="welcome"><a href="{$mybb->settings['bburl']}/usercp.php">{$lang->welcome_usercp}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></td>
<td class="welcome"><a href="search.php?action=getnew">{$lang->welcome_newposts}</a></td>
<td class="welcome"><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></td>
<td class="welcome">
<a href="$settings[bburl]/search.php">{$lang->toplinks_search}</a></td>
<td class="welcome"><a href=""member.php?action=logout&uid={$mybb->user['uid']}&sid={$session->sid}">Logout</a>
</td>
</table>
</div>
Pages: 1 2