djtheadmn
Member
Posts: 70
Joined: Dec 2009
Reputation: 0
|
Panel Right of Logo
Hello. I would like to ask how to put panel top right of the container (right of the logo)
|
|
| 05-09-2010, 01:19 AM |
|
ccalby
Posting Freak
Posts: 889
Joined: Jan 2010
Reputation: 10
|
RE: Panel Right of Logo
whats your header template? Please post the code.
MyBBSource Tutorials Are Located Here! - http://mybbsource.com/forum-40.html
MyBB Official Support Technician
|
|
| 05-09-2010, 01:40 AM |
|
djtheadmn
Member
Posts: 70
Joined: Dec 2009
Reputation: 0
|
RE: Panel Right of Logo
Code:
<div id="container">
<a name="top" id="top"></a>
<div id="header">
<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 class="menu">
<ul>
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
</ul>
</div>
<hr class="hidden" />
<div id="panel">
{$welcomeblock}
</div>
</div>
<hr class="hidden" />
<br class="clear" />
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
<navigation>
<br />
|
|
| 05-09-2010, 01:48 AM |
|
ccalby
Posting Freak
Posts: 889
Joined: Jan 2010
Reputation: 10
|
RE: Panel Right of Logo
where it currently says <div class="logo"> delete it and paste in this
Code:
<div class="logo" li style="text-align: right;">
That will make the logo appear on the right, however I don't know how to move the panel... could you give me a link please to your forum?
MyBBSource Tutorials Are Located Here! - http://mybbsource.com/forum-40.html
MyBB Official Support Technician
|
|
| 05-09-2010, 01:57 AM |
|