Dear
Please go to your_site\templates\sj_jare25\html\com_virtuemart\productdetails\default.phpand find:
$ratingwidth = $this->rating->rating * 13; //*24; //I don't use round as percetntage with works perfect, as for me
=>
$ratingwidth = $this->rating->rating * 16; //*24; //I don't use round as percetntage with works perfect, as for me
- go to your_site\your_site\templates\sj_jare25\html\com_virtuemart\productdetails\default_reviews.php and find:
$ratingWidth = $maxrating * 13; //24;
for ($num = 0; $num <= $maxrating; $num++) {
$stars[] = '
<span title="' . (JText::_ ("COM_VIRTUEMART_RATING_TITLE") . $num . '/' . $maxrating) . '" class="vmicon ratingbox" style="display:inline-block;width:' . 13 * $maxrating . 'px;">
<span class="stars-orange" style="width:' . (13 * $num) . 'px">
</span>
</span>';
} ?>
=>
$ratingWidth = $maxrating * 16; //24;
for ($num = 0; $num <= $maxrating; $num++) {
$stars[] = '
<span title="' . (JText::_ ("COM_VIRTUEMART_RATING_TITLE") . $num . '/' . $maxrating) . '" class="vmicon ratingbox" style="display:inline-block;width:' . 16 * $maxrating . 'px;">
<span class="stars-orange" style="width:' . (16 * $num) . 'px">
</span>
</span>';
} ?>
Thanks!