Summary:
Summary fields don't line up with column headings, because default template generates bad HTML
Detailed Description:
The default summary template closes the table tag right after the column
headings, instead of after the rows of questions and answers.
Fix:
Move "</table>" from:
...
<th>{$label_more}</th>
</tr>
</table>
...
to:
...
</tr>
{/foreach}
</table>