XF 1.3 I would love to move the Post New Thread Button

=MGN=RedEagle

Well-known member
I would love to move the Post New Thread button to the right and make it larger, where do I find it?

Thanks so much for your help guys!
 
The HTML is in this template:

Admin CP -> Appearance -> Templates -> forum_view

Code:
<xen:if is="{$canPostThread}">
	<xen:set var="$newDiscussionButton"><a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a></xen:set>
	<xen:if is="!{$renderedNodes}">
		<xen:topctrl>{xen:raw $newDiscussionButton}</xen:topctrl>
	</xen:if>
</xen:if>
 
The HTML is in this template:

Admin CP -> Appearance -> Templates -> forum_view

Code:
<xen:if is="{$canPostThread}">
    <xen:set var="$newDiscussionButton"><a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a></xen:set>
    <xen:if is="!{$renderedNodes}">
        <xen:topctrl>{xen:raw $newDiscussionButton}</xen:topctrl>
    </xen:if>
</xen:if>
What do I do with that code? I've tried moving it around the template but nothing seems to change? I would like to move the button to the left hand side. Thanks.
 
Top Bottom