MyBB Community Forums

Full Version: [Solved] Moving text in toplinks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
This one has me beat... tried all of the <div stuff, but I think it's more involved than that.. Anyone know how to move this script from left to right.. ??

[attachment=1015]

Easy. Open the toplink templates and in the <li> tag, put

style="float:right;"

then reverse them, eg:

<li>Link1</li>
<li>Link2</li>
<li>Link3</li>

into

<li style="float:right;">Link3</li>
<li style="float:right;">Link2</li>
<li style="float:right;">Link1</li>
Worked a Treat..... Thanks Wink
Are you sure you were using the right thing for <div> as well?

Before <ul> on the toplinks (etc and all) you could have added <div style="float: right;">
I tried <div align="right" which obviously doesn't work there..

What you are saying is that there are two ways ot doing it..

Treat each line as with k776 style, and as a block with yours ??

Either way it doesn't really matter.. as it's fixed. Wink
It doesn't seem to work when I substitute "right" for "center"

??
Just try <align="center">

Or <center>.... Links...</center>

I haven't played with MyBB for some time... but I actually had them in the centre... Just can't remember how I did it... or the text in the 3 templates... ??
Nope. It wont work. Search around the forum though! I know someone found a way to make it aligned center but I can't remember where.
darnit!
It's the header-template you need, not the toplinks...

Find in the 'header template' $toplinks and make it

<div align="center">$toplinks</div>

That should work from memory.

Edit:

Then I used float: to break things left and right... Wish I could remember it all.. But you sound confident in what you are doing. So between the Header and the 3 Toplink templates, you should get what you want.
Pages: 1 2 3