Can anyone tell me how to prevent the ratings in a comment from running under the sidebar? When I choose "use lists for rating display" the list stays within the comment box, but when I choose "use tables for rating display" the table runs out of the comment box. This happens when I use my own themes. Thanks... ( http://www.kaypraptaa.com/eatndrink/?p=369)
Sorry, new URL (I changed the permalinks) - http://www.kaypraptaa.com/eatndrink/sihanoukville/gelato-italiano/
This is what the CSS for your theme says to do. There's probably an "overflow: hidden" somewhere that says to hide content that is wider than its container. You will have to come up with the CSS that creates the desired appearance (I'm not sure what you want to happen -- if it wasn't cut off, then a horizontal display would overlap the sidebar instead of being cut off -- is that better?).
No, I'd simply like the ratings table to fit within the comment box instead of running off to the right. As I said, in "list" view the ratings wrap. Is there a way to make the table wrap?
OK, I'm very proud of myself. I changed the code in review-site-api to the following, thus instructing it to make the table vertical instead of horizontal (I added the line in orange):
$html = '<table class="ratings">';
foreach ($ratings as $cat => $rating) {
$html .= '<tr>';
$html .= '<td class="rating_label">' . $cat . '</td>';
$html .= '<td class="rating_value">';
Sending ...