HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML Forums › Technical questions / Troubleshooting › Incorrect page number alignment $[page] › Reply To: Incorrect page number alignment $[page]
June 16, 2023 at 12:13
#36624
Thank you very much for the useful information!
Through your presentation of the internals I was able to solve another problem, that I had when I switched from V3 to V4: particularly long titles in the headline were wrapped. So I modified one of your variants for a short-term solution:
pd4ml-page-header TD:nth-child(1) {
white-space: nowrap;
}
pd4ml-page-header TD:nth-child(3) {
width: 10%;
white-space: nowrap;
text-align: right;
}
In the long term, I will gradually change the templates to <pd4ml:page.header>
.