Here is the way to change them :
open SHOWTHREAD template :
Find :
Code:
<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&noquote=1" class="newcontent_textcontrol" id="newreplylink_top"><vb:if condition="$show['closethread']"><span>+</span> {vb:rawphrase reply_to_thread}<vb:else />{vb:rawphrase closed_thread}</vb:if></a>
Replace with :
Code:
<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&noquote=1" id="newreplylink_bottom" > <vb:if condition="$show['closethread']"><img src="{vb:stylevar imgdir_button}/reply.gif" alt="{vb:rawphrase reply}" border="0" /><vb:else /><img src="{vb:stylevar imgdir_button}/threadclosed.gif" alt="{vb:rawphrase closed_thread}" border="0" /></vb:if></a>
Find :
Code:
<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&noquote=1" class="newcontent_textcontrol" id="newreplylink_bottom" ><vb:if condition="$show['closethread']"><span>+</span> {vb:rawphrase reply_to_thread}<vb:else />{vb:rawphrase closed_thread}</vb:if></a>
Replace with :
Code:
<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&noquote=1" id="newreplylink_bottom" > <vb:if condition="$show['closethread']"><img src="{vb:stylevar imgdir_button}/reply.gif" alt="{vb:rawphrase reply}" border="0" /><vb:else /><img src="{vb:stylevar imgdir_button}/threadclosed.gif" alt="{vb:rawphrase closed_thread}" border="0" /></vb:if></a>
Save your changes, then go to FORUMDISPLAY template and find :
Code:
<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&f={vb:raw foruminfo.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_top"><span>+</span> {vb:rawphrase post_new_thread}</a>
Replace with :
Code:
<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&f={vb:raw foruminfo.forumid}" rel="nofollow" id="newthreadlink_top"><img src="{vb:stylevar imgdir_button}/newthread.gif" alt="{vb:rawphrase post_new_thread}" border="0" /> </a>
Find :
Code:
<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&f={vb:raw foruminfo.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_bottom"><span>+</span> {vb:rawphrase post_new_thread}</a>
Replace with :
Code:
<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&f={vb:raw foruminfo.forumid}" rel="nofollow" id="newthreadlink_bottom"><img src="{vb:stylevar imgdir_button}/newthread.gif" alt="{vb:rawphrase post_new_thread}" border="0" /> </a>
Then, save your changes and see the new changes.