PDA

View Full Version : [ How Do I ] Reverse PM buttons?


Ohiosweetheart
08-30-2006, 12:14 AM
Inside of a Private message there is the forward and the reply buttons, bottom right.
I need to reverse these buttons, so that the reply button is on the left, and forward is on the right.

http://i17.photobucket.com/albums/b91/babydoll2u/pmexample.jpg

However, I can't find the template that would allow me to do this, if it is possible.

Can anyone guide me, please?

thanks in advance.

Iain M
08-30-2006, 11:18 AM
Admin CP -> Styles & Templates -> Style Manager -> Edit Templates -> Postbit Templates -> postbit/postbit_legacy

FIND:
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>

REPLACE WITH:

<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>

Ohiosweetheart
08-30-2006, 12:41 PM
THANK YOU!!! I SO appreciate the help.

Iain M
08-30-2006, 08:24 PM
np :)