|
Looks like MarkBind V4 has a bigger default font size for printing. Is there a way to adjust the main.css to reduce the font size when printing? |
Answered by
tlylt
Aug 4, 2022
Replies: 3 comments 1 reply
|
For normal body text, doing something like this should work (adjust 0.9rem to any other desired value) to apply the change when print: @media print {
body {
font-size: 0.9rem; /* Reduce font size when printing */
}
} |
0 replies
Answer selected by
damithc
|
Nice, managed to reduce size of body and headings using that technique. Thanks @tlylt |
1 reply
|
The zoom trick worked for my use case. Thanks again @tlylt |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



For normal body text, doing something like this should work (adjust 0.9rem to any other desired value) to apply the change when print: