In creating a HTML email, I am using Zurb Ink framework.
I have a panel that I want to have a several horizontal lines of display inside of the panel. For instance:
Panel:
[assigned] 12/12/2013 12:14:00 Reboot Server
[unassigned] 12/12/2013 15:00:00 Shutdown Server
Where there is a button for assigned/unassigned and text following.
In this code I have I created the panel and the button successfully inside the panel. However, I can not get the button to take only two columns. How can I make the button take only 2 columns and then have text after the button?
<table class="row callout">
<tr>
<td>
<table class="twelve columns">
<tr>
<td class="panel" style="background: #ECF8FF; border-color: #b9e5ff">
<table class="two columns">
<table class="tiny-button small radius alert">
<tr>
<td>
unassigned
</td>
</tr>
</table>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>