Quote:
Originally Posted by rjmjr69
ok this is most likely a dumb question but With the new arrows that get installed does a member click say the green one to increase a rep and the red to lower it? I would love the pips below as well
|
If you want pips below (not tested) but try this:
FIND:
PHP Code:
<div class="info"><if condition="$show['reputation']">
<if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower] </if>
$post[reputationdisplay]
</if></div><br />
And REPLACE with:
PHP Code:
<div class="info"><strong>Reputation:</strong> $post[reputation]
<a href="reputation.php?$session[sessionurl]p=$post[postid]" onclick="return reputation($post[postid])"><img src="$stylevar[imgdir_reputation]/neg.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a>
<a href="reputation.php?$session[sessionurl]p=$post[postid]" onclick="return reputation($post[postid])"><img src="$stylevar[imgdir_reputation]/pos.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></div><br />
$post[reputationdisplay]
That should put the pips below. If you want to move the pips around try moving $post[reputationdisplay] around in that code.