Page 1 of 1

PDF Output Issue

Posted: Tue Jun 30, 2020 3:42 pm
by Stacey
Hello:

I have a table that has three columns. Some of the entries in the first column are included in multiple rows (<entry morerows="1">). This looks fine in WebHelp output as the page is infinitely long. In PDF output, there are some table rows that are moved to the next page, so the first column appears empty. This may be confusing to users.
output.png
output.png (12.48 KiB) Viewed 909 times
Is there a way to repeat the column 1 data on subsequent pages when the rows that are affected appear on multiple pages?

Re: PDF Output Issue

Posted: Wed Jul 01, 2020 1:09 pm
by julien_lacour
Hello,

There is no way to repeat the column 1 data on subsequent pages.
Normally the default behavior is to not display the bottom border when the table spans on multiple pages.
This shows the reader that the row isn't finished yet.

You can also customize the output using the following property:

Code: Select all

*[class~="topic/entry"] {
    vertical-align: middle;
}
Like this the content of column 1 will be centered.


Regards,
Julien