MyBB Community Forums

Full Version: Thread button location
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I'm trying to move the thread button "new thread" to the left side of the page instead of the default right side.

I have looked at editing the new thread part in the template/theme, but I still can't figure it out.

Does anyone know how I can do this easily?
Expand the templates for the theme you want to edit, then edit the Forum Display Templates => forumdisplay_threadlist. You'll see this in the code:

<div class="float_right">
	{$newthread}
</div>

Change the div class to "float_left" will align it to the left.
(2009-03-16, 09:13 AM)Tomm M Wrote: [ -> ]Expand the templates for the theme you want to edit, then edit the Forum Display Templates => forumdisplay_threadlist. You'll see this in the code:

<div class="float_right">
	{$newthread}
</div>

Change the div class to "float_left" will align it to the left.

That worked perfect.

Just one more question - how can I move the new reply button to the left?
Probably the exact same thing but in the showthread template.
(2009-03-16, 05:00 PM)MattRogowski Wrote: [ -> ]Probably the exact same thing but in the showthread template.

That worked perfect thanks!