One challenge of the ScoreApp PDF report is that it writes the text from right to left, making it hard to read.
One way to improve this, is by dividing the text into 2 columns. You can do that by splitting your text into 2 columns.
You can simply add this to your CSS settings.
p {
column-count: 2;
column-width:200px;
column-gap:50px;
column-rule: 2px double #f00;
}
NOTE: For it to work, you have to make sure that you don’t press enter at the end of each paragraph, but press shift+enter to make a space.
Make sure you look at your whole PDF to make sure it still all display correctly. If you see any issues, you can modify the CSS. If you can’t find the right CSS, you can delete the lines you have inserted, or reach out to someone who knows CSS.


