This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

How to make votebar.png shorter


avatar
error 232
From: -
How to make votebar.png shorter

I cant implement poll in my design because of length of votebar.png. Is it possible to make it shorter?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: How to make votebar.png shorter
avatar
Editor
0
From: -
Open blocks/news_poll.php in an editor and find:

                                       $news_poll .= htmlspecialchars( base64_decode( $input_poll_array[ $i ] ) ) . "<br />";

$news_poll .= "<img src=\"images/votebar.png\" width=\"" . $poll_percent . "\" height=\"9\" alt=\"\" /><br />";
$news_poll .= $poll_percent . "% (" . $poll_votes . " votes) <br /><br />";


Then replace it with:

                                     $poll_bar_length = ($poll_percent) ? $poll_percent - 50 : 0 ;

$news_poll .= htmlspecialchars( base64_decode( $input_poll_array[ $i ] ) ) . "<br />";
$news_poll .= "<img src=\"images/votebar.png\" width=\"" . $poll_bar_length . "\" height=\"9\" alt=\"\" /><br />";
$news_poll .= $poll_percent . "% (" . $poll_votes . " votes) <br /><br />";


You can adjust the bar length here:
$poll_bar_length = ($poll_percent) ? $poll_percent - 50 : 0 ;

For example, to make it even shorter you need to increase the highlighted value:
$poll_bar_length = ($poll_percent) ? $poll_percent - 75 : 0 ;
1 Re: How to make votebar.png shorter
avatar
OP 232
From: -
Yes. Sorry for missing info about that.
1 Re: How to make votebar.png shorter
avatar
Editor
0
From: -
Where? In the side block?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.