Log in

View Full Version : Poll Bar Gif Code Width Param


legionofangels
01-23-2008, 09:18 PM
Hello,

Ok in my quest to adjust and change the poll gifs, I've done that and set up the changed gif images to show on my forum.

Now I've ran into what seems to be my final step to adjust.

I need to know what part of the vBulletin code is determining the width of the poll bar.

I think it's in this part of the code but I don't know what the numbers are doing in this code, and which one to modify.

$option['percent'] = vb_number_format(($value < $pollinfo['voters']) ? $value / $pollinfo['voters'] * 100 : 100, 2);
}
else
{
$option['percent'] = vb_number_format(($value < $pollinfo['numbervotes']) ? $value / $pollinfo['numbervotes'] * 100 : 100, 2);
}

$option['graphicnumber'] = $option['number'] % 6 + 1;
$option['barnumber'] = round($option['percent']) * 2;

What I'm trying to achieve is to make the poll bar use all of the space allotted IF at 100%.

If you look at these two images:

The Admin CP Statistics Section

http://img.photobucket.com/albums/v318/scorpion_666/admin-cp.gif

The Forums Poll Image with one option at 100%

http://img.photobucket.com/albums/v318/scorpion_666/problems.gif

You'll notice a bunch of dead space in the poll one on the forum, in fact 100% takes up less than 50% of the space allowed and available.

I don't want to use the same exact poll system or calculation for the Admin CP, as that is a poll system based on a curve.

I want the polls to take up an amount of the FULL space allowed, and basically take up a percentage of it based upon the FULL amount available as 100%.

Therefore I think either the 100 : 100, 2; something in that needs to be changed.

Can anyone tell me what that 100 : 100, 2; part of the code is doing for the system?

If that isn't it, do you know where the code is to change the maximum width of the poll options on showthread.php and polls.php? Or elsewhere if it's determined elsewhere?