MyBB Community Forums

Full Version: How to make Toplinks like this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to make my Logo and Toplinks like this:

[Image: WxrjN16.png]

so that my Logo is aligned to the Left, and my Toplinks are aligned to the Right but in the Squareish style like shown in the picture above.

How would I do this?

Also: I'm using MyBB 1.6
sorry
thats a premium theme, you should ask the developer of it support?
myskins.org
(2014-11-24, 05:00 PM)subzr1 Wrote: [ -> ]sorry
thats a premium theme, you should ask the developer of it support?
myskins.org

That's not really what I asked. I'm not using that theme so there's no reason for me to ask the creator of that theme. I know it's a premium theme, that's irrelevant. I've seen a ton of themes with that, I want to know how to make it like that.

I'm using the default MyBB theme, I'm creating myself a theme. 1.6
Just use a div and float them like so

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

<div class="float_right">
<ul class="menu top_links">
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
</div>
(2014-11-25, 01:26 AM)iAndrew Wrote: [ -> ]Just use a div and float them like so


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

<div class="float_right">
<ul class="menu top_links">
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
</div>

Not working for me..