Operating system
Windows
Joplin version
3.6.13
What issue do you have?
How do I create better defined lines dividing cells - both vertical and horizontal
The default ones are virtually invisible when printed
You could try this. I have just taken this from the @media print section in my own userstyle.css file. I use this section to make the notes suitable for printing on a mono printer. It may be a bit more than what you need, edit accordingly.
Putting the css in @media print means that it will only apply when printing or exporting to PDF.
If you want it to apply it to the screen as well, remove @media print { and the closing two lines.
@media print {
table th,
table tr,
table td {
font-size: 12px;
color: #000000;
border: 1px solid #000000;
/* black table borders for printing */
background: none !important;
/* no table background for printing */
}
/* Add further css here to modify how a note prints */
}
Thanks, just what I wanted.
I had no idea about userstyle.css so that's something else I've learnt ![]()