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.![]()
I would like that too, maybe a code or a feature?
Yeah, before the upgrade you could have this:Code:
- {if:reputation_give}Bless{/if:reputation_give} {if:reputation_take}Curse{/if:reputation_take}
There should be alternative ways.
try this:
replace{reputation_take}with:Code:
- <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:
- <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!![]()
It works, thanks.![]()
You're welcome!![]()