I'm using your table shortcodes. How do I create columns that span multiple rows? Like the tables at the bottom of this page... the pueple blocked areas...
http://www.donjohnston.com/products/cowriter/pricing_funding.html
Thanks!
I'm using your table shortcodes. How do I create columns that span multiple rows? Like the tables at the bottom of this page... the pueple blocked areas...
http://www.donjohnston.com/products/cowriter/pricing_funding.html
Thanks!
Hi,
You can add a unique class on a table column. Something like this
[avia_table]
<table class="description_row">
<tbody>
<tr class="description_row">
<td>Edit</td>
<td>Edit</td>
<td>Edit</td>
</tr>
<tr class="pricing-row">
<td>Edit</td>
<td>Edit</td>
<td>Edit</td>
<td class="full-height">Call or request a quote online for your best price!</td>
</tr>
</tbody>
</table>
[/avia_table]
Then on your custom.css style the column with the "full-height" class.
.full-height {
position: absolute;
height: 87px!important;
top: 0px;
box-shadow: none!important;
}
Regards,
Ismael
Thank you Ismael! I actually got it to work with a slight variance of regular cell HTML, but I'll need this as well. Brilliant.
This topic has been closed to new replies.