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.
Is there a way to repeat the column 1 data on subsequent pages when the rows that are affected appear on multiple pages?
PDF Output Issue
PDF Output Issue
- Attachments
-
- image.png (26.78 KiB) Viewed 334 times
-
- Posts: 150
- Joined: Wed Oct 16, 2019 3:47 pm
Re: PDF Output Issue
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:
Like this the content of column 1 will be centered.
Regards,
Julien
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;
}
Regards,
Julien