fanpilot

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Table widths when converting docx to html #7681

    fanpilot
    Participant

    I fixed this, by ensuring that the table in the source document had a set width (100% in my case).

    in reply to: Table borders when there should be none #7617

    fanpilot
    Participant

    I have just figured out a part of the problem (the missing border where there should be one).

    Imagine a table like…

    
    <table>
    <tr>
    <td rowspan="2">double row text</td>
    <td rowspan="2">double row text</td>
    <td>single row - top</td>
    <td rowspan="2">double row text</td>
    <td>single row - top</td>
    </tr>
    <tr>
    <td>single row - bottom</td>
    <td>single row - bottom</td>
    </tr>
    </table>
    

    The two sets of single rows should combine as to cells (one below the other).

    In the transform to html from wml, it appears the 4th cell is not keeping the double row as it should… but is stealing the single row bottom that should be under the 5th cell. This is leaving me a blank area, which because I have further rows, looks like it is missing a border (which is not actually the case).

    I don’t know where to go from here to work this out. All help would be appreciated.

    Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)