Posted by Rickster
2014-09-24

In the gradip template, the option and the graph are on different lines. How can I modify the old-fashioned table-based simple template to put option and graphic on their own lines. This is valuable with long options, like this message. My apologies, thank you.
Posted by Tom
2014-09-25

You can modify the table structure in tpl.result.inc.php in the simple skin. Currently the table structure is like
<tr>
<td>...display option name here...</td>
<td>...display graph here...</td>
<td>...display vote count here...</td>
</tr>
To put them in separate lines, the table structure should look like
<tr><td>...display option name & vote count here...</td></tr>
<tr><td>...display graph here...</td></tr>