MyBB Community Forums

Full Version: Question involving Welcome Panel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Okay I wanna move the Welcome Panel under my navigation.The problem is I only want the Welcome Panel not the part that says mybb.

How would I do this?
It should already be under the navigation..? What theme are you using?
You should just have to move the panel div under the menu div.
(2009-12-03, 03:39 AM)Joshee Wrote: [ -> ]It should already be under the navigation..? What theme are you using?
You should just have to move the panel div under the menu div.

No it isn't.

I mean like in almost any SMF theme >.>.
Screenshot? Im not sure I know what you mean.
You said you want the welcome panel below the navigation.. The welcome panel is the part that says 'Welcome back, Username!' and such.
(2009-12-03, 03:55 AM)Joshee Wrote: [ -> ]Screenshot? Im not sure I know what you mean.
You said you want the welcome panel below the navigation.. The welcome panel is the part that says 'Welcome back, Username!' and such.

like so - http://custom.simplemachines.org/themes/...0335;image
What theme are you trying to do this in? I still dont fully understand what you mean... The welcome panel is already under the navigation like that...
I am using the default theme with a vbulliten like menu.
Ooh okay I understand. Could you post the code you have for the vbulletin menu/panel?
(2009-12-03, 04:11 AM)Joshee Wrote: [ -> ]Ooh okay I understand. Could you post the code you have for the vbulletin menu/panel?

Okay =

under header -

<a name="top" id="top"></a>
	<div id="container">
		<div id="header">
			<table width="100%" class="logo" cellpadding="0" cellspacing="0">
		<tr>
		<td style="padding:0px">
			<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a>
			</td>
			<td align="right" style="vertical-align:top; padding:4px">
			<form method="post" action="search.php"><input type="hidden" name="action" value="do_search" /><input name="keywords" type="text" class="textbox" value="" size="20" maxlength="250"/> 
			<input type="submit" class="button" name="submit" value="Quick Search" /></form>
			</td>
			</tr>
			</table>
			<hr class="hidden" />
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
		</div>
{$welcomeblock}

Under header member -

<table border="0" cellspacing="$theme[borderwidth]" cellpadding="4" class="tborder">
<tr>
<td class="thead_bottom" colspan="2"></td>
</tr>
<tr>
<td class="trow1" width="63%"><navigation></td>
<td class="trow1" style="font-size:11px; white-space:nowrap">
{$lang->welcome_back}<br />
{$lang->welcome_current_time}<br />
<a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', 'buddyList', 170, 300);">{$lang->welcome_open_buddy_list}</a> | <a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
</td>
</tr>
<tr>
<td colspan="2">
<table border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td><a href="{$mybb->settings['bburl']}/usercp.php">{$lang->welcome_usercp}</a>{$modcplink} {$admincplink}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a>— </td>

<td><a href="$settings[bburl]/search.php">{$lang->toplinks_search}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a>— </td>
</tr>
</table>
</td>
</tr>
</table>
For the header_welcomeblock_member template. Try this:
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="4" class="tborder">
<tr>
<td class="thead_bottom" colspan="2"></td>
</tr>
<tr>
<td colspan="2">
<table border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td><a href="{$mybb->settings['bburl']}/usercp.php">{$lang->welcome_usercp}</a>{$modcplink} {$admincplink}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a>— </td>

<td><a href="$settings[bburl]/search.php">{$lang->toplinks_search}</a>— </td>

<td><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a>— </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="trow1" width="63%"><navigation></td>
<td class="trow1" style="font-size:11px; white-space:nowrap">
{$lang->welcome_back}<br />
{$lang->welcome_current_time}<br />
<a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', 'buddyList', 170, 300);">{$lang->welcome_open_buddy_list}</a> | <a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
</td>
</tr>
</table>
Pages: 1 2