vForums Support > vForums :: Support :: > Rep?

Rep? - Posted By Nick (nickb) on 24th Dec 09 at 12:47am
For the rep, is there any other way to put it other than the + - symbols? because I have it for words as Bless Curse, but looks awkward with the + - next to the words, and the words not being clickable?

Sorry it's not worded right. My mind is tired right now. {Tongue Out}

Re: Rep? - Posted By Aiken (ionfortuna) on 24th Dec 09 at 2:01am
I would like that too, maybe a code or a feature?

Re: Rep? - Posted By Nick (nickb) on 24th Dec 09 at 4:31am
Yeah, before the upgrade you could have this:
Code:
 
  1. {if:reputation_give}Bless{/if:reputation_give} {if:reputation_take}Curse{/if:reputation_take}
 


There should be alternative ways.

Re: Rep? - Posted By Michael (wrighty) on 24th Dec 09 at 6:25am
try this:

replace
{reputation_take}
with:
Code:
 
  1. <span id = 'minus' style = 'display: none'>{reputation_take}</span><script>document.write(get('minus', 'id').innerHTML.replace(/\-/, "Take     Reputation"));</script>
 


And replace
{reputation_give}
with:
Code:
 
  1. <span id = 'plus' style = 'display: none'>{reputation_give}</span><script>document.write(get('plus', 'id').innerHTML.replace(/\+/, "Give Reputation"));</script>
 


At least for now till Ross fixes it! {Tongue Out}

Re: Rep? - Posted By Nick (nickb) on 24th Dec 09 at 6:32am
It works, thanks. {Smile}

Re: Rep? - Posted By Michael (wrighty) on 24th Dec 09 at 6:34am
You're welcome! {Grin}