How to change formats in the notes windows ?
Hello
I'm sorry if the question has already been answered, but I could not find it in the forum (and neither elsewhere on the net).
I would like to change the styling of my notes windows (a larger line-height, maybe another font, and so on...) and I am cannot find where to to it. I saw some properties in about:config, but I don't think the (css ?) styles for paragraph and headings are recorded there.
Can someone help me ? Thanks a lot.
I'm sorry if the question has already been answered, but I could not find it in the forum (and neither elsewhere on the net).
I would like to change the styling of my notes windows (a larger line-height, maybe another font, and so on...) and I am cannot find where to to it. I saw some properties in about:config, but I don't think the (css ?) styles for paragraph and headings are recorded there.
Can someone help me ? Thanks a lot.
So, for example, you could put in the following rules, all in a single line:
p {line-height: 1.4; margin-bottom: 2em;} li {line-height: 1.2;} blockquote {margin-left: 4em;}
This will effect all the paragraphs, list items and blockquotes in your notes (needs a restart to see the changes when the notes are docked on the left-hand-side, but changes will show up straight away if you open a note in a separate window).
Note that the "extensions.zotero.note.fontFamily" and "extensions.zotero.note.fontSize" (which is reflected in the "Note font size" setting in Zotero Preferences > General) entries in about:config control the font in the paragraphs in your notes - you can't over-ride those by adding any font declarations to a rule describing paragraphs, although you can change the font attributes for list-items and headings, should you want to.
You can also create custom class selectors, but then you need to manually edit the HTML of your notes and add the class into the code by hand.
If you get really bored, you can also do fun stuff with blockquotes by using the :before and :after selectors.