Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #28280

    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

    #137093

    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

    #137094

    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

    #137095

    Hey,

    I’m really not sure but I guess a good developer can add the functionality on less than 3 hours tops. :)

    Regards,

    Ismael

    #137096

    Ok, thnx!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Table shortcode: how to add colspan’ is closed to new replies.