MyBB Community Forums

Full Version: new reply and star ratings location
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I was able to change the new thread button to the left side, but I can't find the area where I can change the reply button and the starts to the left.

Does anyone know what file it is in?

Any help would be appreciated.
In Show Thread Templates (Templates & Style section of the ACP), find:

	<div class="float_left">
		{$multipage}
	</div>
	<div class="float_right">
		{$newreply}
	</div>
	{$ratethread}

Simply put {$newreply} and {$ratethread} next to {$multipage}, and it will be on the left.
(2009-02-09, 07:18 AM)Tom.M Wrote: [ -> ]In Show Thread Templates (Templates & Style section of the ACP), find:

	<div class="float_left">
		{$multipage}
	</div>
	<div class="float_right">
		{$newreply}
	</div>
	{$ratethread}

Simply put {$newreply} and {$ratethread} next to {$multipage}, and it will be on the left.


Thanks!