MyBB Community Forums

Full Version: New Thread & Reply
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i place the new reply and new thread buttons to the left of the page instead of the right
As far as I know you'll need to edit the necessary template files and change the justification.
In the showthread template, find:
	<div class="float_left">
		{$multipage}
	</div>
	<div class="float_right">
		{$newreply}
	</div>

In the forumdisplay_threadlist template, find:
<div class="float_left">
	{$multipage}
</div>
<div class="float_right">
	{$newthread}
</div>

Change "float_right" to "float_left" and vice versa to swap the buttons and pagnation. You'll need to change it twice on each template, once for the top and once for below the threads/posts. Smile