note style changed after 2.0.9
I just updated to 2.0.9 and all my notes have been changed! The font has become smaller and all hard returns register a space after them (I had it set up so that a hard return would have zero space between lines.) I would like my notes to be as they were before the update...
http://forums.zotero.org/discussion/4558/#Item_25
How do I do this? I went into about:configure and to extensions.zotero.note.css and put in "blockquote" but that didn't work.
p {margin-bottom: 0; padding-bottom: 0}
Unless you're changing the style for blockquote, you don't need to modify blockquote...
p+p {
text-indent: 1.5em;
}
It will automatically indent the first line of all paragraphs after the first.
one
two
I have:
one
two
With that extra space between the lines...
p {margin-bottom: 0; padding-bottom: 0; margin-top: 0; padding-top 0}
Thanks so much!
In the URL address bar of Firefox enter about:config
In the search function enter extensions.zotero.note.css
Right-click on extensions.zotero.note.css and select Modify
Then paste the string below into the pop-up window:
p {margin-bottom: 0; padding-bottom: 0; margin-top: 0; padding-top 0}
Close Firefox and you are done!