MyBB Community Forums

Full Version: Move New Thread Button to the Left Side
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I move the "New Thread" button tk the left side just like what vBulletin and phpBB has it like.
Go to your showthread template, find this code

	<div style="padding-top: 4px;" class="float_right">
		{$newreply}
	</div>

replace with

	<div style="padding-top: 4px;" class="float_left">
		{$newreply}
	</div>
No thats incorrect, thats the newreply button not newthread.
Same difference - its in the floats - but you are right, I will dig that one up too. Smile

go to forumdisplay_threadlist

find

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

replace with

<div class="float_left">
	{$newthread}
</div>
Nice job Wink