Hi,
Is it possible to change table.php so you can add colspan and/or rowspan to the shortcode?
I’m not familiar with php and really have no idea how, but i guess it’s not that much work.
Like this:
[av_table purpose='tabular' caption=''] [av_row row_style='avia-heading-row'][av_cell col_style='' colspan='2']Table title[/av_cell][/av_row] [av_row row_style=''][av_cell col_style='']Item 1[/av_cell][av_cell col_style='']Item 2[/av_cell][/av_row] [/av_table]
Thanks for helping me out!
a01
Hi,
It looks easy but believe me it’s not. Well, on my case it’s not that easy. You can hire a freelance developer to modify the table shortcode for you. You can create your own table code. Use the Text Block element then use this:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$100</td>
</tr>
<tr>
<td colspan="2">Sum: $180</td>
</tr>
http://www.w3schools.com/tags/att_td_colspan.asp
Regards,
Ismael
Hi,
Can you give me an estimation on how long it might take for a developer to do this?
Using html is not an option for my client.
Thanks!
a01
Hey,
I’m really not sure but I guess a good developer can add the functionality on less than 3 hours tops. :)
Regards,
Ismael
Ok, thnx!