Is there a way to style the print page so that we can fit 30/35 songs on a single A4?
On two columns maybe?
To split the setlist into two columns, you can use this style:
.print-setlist ul {
columns: 2;
column-rule: solid 0.3em black;
}
The result will look like this:
If you don’t like the line in the middle, you can leave out the column-rule
style.
To manually specify a column break, add the following style:
.print-setlist .col-break {
break-before: column;
}
Then add that class name to the locator of the song you want to push to the next column, e.g. The Shore Drum Solo [.col-break], which then looks like this:
I hope this helps!
This is great Leo, thank you brother!
1 Like