PDA

View Full Version : increase the width of rating score box


romow
11-13-2005, 06:56 PM
hi,

once a member has posted a reply to a given review thread, along with review scores, the submitted review score is displayed next the submitted reply.

how can i increase the width of review score box in a reply?

i was able to increase the width of the score box in a review thread,
but cannot find where i can update the score box width for a review reply..

thanks.

e.g., here is the current review thread.
http://www.dnp.in/showthread.php?t=793
as you can see, the default width of score box in replies is too small...
i would like to increase it.

The Geek
11-13-2005, 07:09 PM
You could do this for right now:

in geek/gars/includes/gars_class_core.php find

$bits.="<tr><td class='alt2' align='left'>$question[text]</td><td class='alt2' align='left'>$rating_bar</td><td class='alt2' align='right'>$rating_value</td></tr>";

and replace it with

$bits.="<tr><td class='alt2' align='left' style='white-space: nowrap;'>$question[text]</td><td class='alt2' align='left'>$rating_bar</td><td class='alt2' align='right'>$rating_value</td></tr>";


HTHs

romow
11-13-2005, 11:03 PM
thanks for your help! :)