Not Solved Moving The Panel
#1
Not Solved
I ran in to yet another problem with my theme creation. I need to move the panel to the area that I have made for it in the logo. How would I go about doing that? I would also want to make it transparent if I could.

Screenshot: http://i54.tinypic.com/j9vs03.png
Premium MyBB, Xenforo and IPB themes at great prices!
-Audentio has some amazing forum themes that are great for both small businesses and the casual forum owner.
-Click the link above to check them out!
Reply
#2
Not Solved
Float it within the header, add float:right; to #panel

Without seeing the code you're using it's hard to give any more guidance than that.
Reply
#3
Not Solved
Here is my header:

<div id="container">
<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>

		<a name="top" id="top"></a>
		<div id="header">

			
	<div id="panel">
				{$welcomeblock}
			</div>
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
		</div>
			
			<hr class="hidden" />

		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
			<br />

Here is my #Panel:

#panel {
	background: #000;
              width: 350px;
              float: right;
	color: #fff;
	font-size: 11px;
	border: 1px solid #D4D4D4;
	padding: 8px;
}
Premium MyBB, Xenforo and IPB themes at great prices!
-Audentio has some amazing forum themes that are great for both small businesses and the casual forum owner.
-Click the link above to check them out!
Reply
#4
Not Solved
Try putting the panel inside the logo div:

            <div class="logo">
<div id="panel">{$welcomeblock}</div>

Then add some margins to align it correctly.
Reply
#5
Not Solved
Did not change any thing. Thanks for the suggestion though.
Premium MyBB, Xenforo and IPB themes at great prices!
-Audentio has some amazing forum themes that are great for both small businesses and the casual forum owner.
-Click the link above to check them out!
Reply
#6
Not Solved
Is that whole image set as the logo? It needs to be set as a background image in the CSS for what I suggested to work. Without seeing all the code together it's not easy to see what will work.
Reply
#7
Not Solved
Ah that was it, worked like a charm. Thanks mate!
Premium MyBB, Xenforo and IPB themes at great prices!
-Audentio has some amazing forum themes that are great for both small businesses and the casual forum owner.
-Click the link above to check them out!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)