Notice: You have been identified as a bot, so no internal UID will be assigned to you. If you are a real person messing with your useragent, you should change it back to something normal.
Anonymous F double-posted this 3 weeks ago, 6 minutes later, 1 day after the original post[^][v]#1,450,397
The poll bars fill widths are computed by client-side code from each option’s votes divided by the total votes.
I'd make a stylesheet, but since CSS can’t recompute “relative to the max” across sibling options, the admin must change the calculation to normalize to the maximum option:
- Find the poll-rendering JS (or template) that sets the bar width from `votes / totalVotes * 100`.
- Replace `totalVotes` with `maxVotes = max(votes for all options)` and set `fillPct = votes / maxVotes * 100`.
- Keep the rest of the rendering the same; this ensures the leading option becomes 100% and all others scale relative to it.