MyBB Community Forums

Full Version: Move toplinks?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is there any way to move them to the left of the page?
ACP -> Templates and Styles -> Templates -> Your theme -> Header Templates -> Header

I will post the code edit in a minute. I'm doing something.
but how do I do it? I know where to find it
Well if you can post the code you found I can show you how to change it.
The css just has to be changed from right align to left align. Edit it in admincp theme editor. I think toplinks are "menu" css.
I figured found a old thread here and it worked. This in the header template

<div class="menu" style="float: left">
<ul style="text-align: left">
<li><a href="#">Your link on the left</a></li>
</ul>
</div>
Or you can do it from header templates near links to adding following HTML code:

<left>CONTENT GOES HERE</left>
That's counter-productive since the css is defined as right and you just have to change one word in the admincp.

I described how to do it. You've done it in a less efficient manner.
(2011-05-09, 03:54 AM)dj83 Wrote: [ -> ]I figured found a old thread here and it worked. This in the header template

<div class="menu" style="float: left">
<ul style="text-align: left">
<li><a href="#">Your link on the left</a></li>
</ul>
</div>

(2011-05-09, 04:34 AM)crazy4cs Wrote: [ -> ]Or you can do it from header templates near links to adding following HTML code:

<left>CONTENT GOES HERE</left>

I wouldn't recommend either of those, both are messy.

Go to ACP >> Templates & Style >> Themes >> yourtheme >> global.css

Find .menu ul and change the text-alignment.
Yup, but I just lead another way, Labrocca's is easy and thats why I use. Wink