-
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? |
Beta Was this translation helpful? Give feedback.
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 */
}
} |
Beta Was this translation helpful? Give feedback.
-
Nice, managed to reduce size of body and headings using that technique. Thanks @tlylt |
Beta Was this translation helpful? Give feedback.
-
The zoom trick worked for my use case. Thanks again @tlylt |
Beta Was this translation helpful? Give feedback.
For normal body text, doing something like this should work (adjust 0.9rem to any other desired value) to apply the change when print: