MyBB Community Forums

Full Version: How do I put the panel in the header?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to put the panel (Welcome block) in my header so that it is opposite my logo.

So it would look like this "LOGO" | "PANEL" all on the same line

FORUM URL: http://webtechforums.com/index.php

Any help on this is much appreciated Smile
you have to move the panel content in the header template to the required place
<div id="panel">
{$welcomeblock}
</div>

if required, you have to adjust the css style for #panel in the global.css
(2013-06-10, 02:02 PM).m. Wrote: [ -> ]you have to move the panel content in the header template to the required place
<div id="panel">
{$welcomeblock}
</div>

if required, you have to adjust the css style for #panel in the global.css

That just puts it directly below my logo, I want it next to it Smile
^ your forum's logo div is enclosed in header div. panel div should be moved to just after logo div within header div.
if that doesn't work then you may have to change one of div element to span element