Operating system
Windows
Joplin version
3.2.12
Desktop version info
Joplin 3.2.12 (prod, win32)
Sync Version: 3
Profile Version: 47
Keychain Supported: Yes
Revision: d6f1ca4
Backup: 1.4.2
Conflict Resolution: 1.2.3
Convert Text To New Note: 1.5.1
Favorites: 1.3.2
Folding in Code Mirror Editor: 2.0.1
Freehand Drawing: 2.14.0
Hotfolder: 1.2.0
Inline tags: 1.3.0
Inline TODO: 1.7.1
Kity Minder: 1.0.16
Markdown Table: Sortable: 1.2.2
Note list and sidebar toggle buttons: 1.0.3
Note overview: 1.7.1
Note Tabs: 1.4.0
Outline: 1.5.13
Quick Links: 1.3.2
Rich Markdown: 0.15.1
Search & Replace: 2.2.0
Templates: 2.4.0
What issue do you have?
How to change font size of table text when printing or exporting pdf?
I know how to change font size for general text, but don't know how to do so for table text.
@media print {
body {
font-size: 12px;
/* example - when printed the same body text will be 12px*/
}
}
Simply adding a sub-section inside @media print
for 'table' does not work.
table {
font-size: 10px;
}