I'm successfully generating some HTML5 Top Nav output, and on-screen, all appears just how I want it.
Issue 1
However, if I open a topic with tables, and then use the MadCap Print button to print, the tables in the printed output seem to disobey all width-related styling!
In my stylesheet, I have an @media print section, and I've added a tables section, as follows:
@media print
table
{
/*border: solid 1px #dcdcdc;*/
border: solid 2px orange;
border-radius: 8px;
border-collapse: collapse;
margin-left: 50px;
padding: 4px;
width: 98%;
}
I know that this style is getting picked up because the table borders are orange in the printed output
Issue 2
Also, if I have a plain <td></td> cell, the text wraps nicely within the (limited - see issue 1 above!) width that the table gives it. However, if I need additional paragraphs (<td><p></p><p></p></td>) then the text in the <p> tags ignores the cell/table width, and runs off the right-hand margin of the page.
I'm sure there are simple fixes for these, but I can't see them!
Many thanks for any suggestions you have!