• Hi, Is it possible to span columns to create something like the table rendered by:

    <table border="0"  style="text-align:center;">
    <thead>
    <tr>
    <th colspan="2" style="background-color:#000099;color:white;" >Transaction Value</th>
    <th>&nbsp;</th>
    <th colspan="4" style="background-color:#000099;color:white;"> Non-Exclusive Fee</th>
    </tr>
    <tr>
    <th width="65" style="background-color:cyan;color:black;">Over</th>
    <th width="95" style="background-color:cyan;color:black;">But not over</th>
    <th>&nbsp;</th>
    <th width="65" style="background-color:cyan;color:black;">Fee</th>
    <th width="10" style="background-color:cyan;color:black;">+</th>
    <th width="65" style="background-color:cyan;color:black;">%</th>
    <th width="175" style="background-color:cyan;color:black;">of the amount over</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td width="65"> $0</td>
    <td width="95"> $50,000</td>
    <td>&nbsp;</td>
    <td width="65"> $0</td>
    <td width="10"> +</td>
    <td width="65"> 8.000%</td>
    <td width="175"> $0</td>
    </tr>
    <tr>
    <td width="65"> $50,000</td>
    <td width="95"> $100,000</td>
    <td>&nbsp;</td>
    <td width="65"> $3,750</td>
    <td width="10"> +
    <td width="65"> 7.500%</td>
    <td width="175"> $50,000</td>
    </tr>
    </tbody>
    </table>

    https://www.ads-software.com/plugins/table-maker/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I desperately need this option to

    I found a way to do it but it is permanent
    so I am no sure if it will help you or not
    anyway
    add the following code

    <colgroup>
    						<col width="5%">
    						<col width="30%">
    						<col width="20%">
    						<col width="15%">
    						<col width="15%">
    						<col width="15%">
    					</colgroup>

    after line 454 which is ” <tbody class="wpsm-tbody">

    you can read more about colgroup and colwidth to know how to customize it

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Possible to span columns?’ is closed to new replies.