Hey @wgrace Winston, I’m just starting to learn/understand HTML and CSS. In your video (which is very helpful btw), is the CSS thing that limits the width of the text the max-width element? Just trying to understand whether padding works to keep the text squished in a certain distance from the edge of the note.
I figured I’d share these minor changes to the default display.css stylesheet that will be of particular interest to anyone who uses both the include-quote and quote-from commands and wants normal blockquotes to appear the same way as notes referred to by include-quote.
/* Make sure you replace the old CSS for blockquotes */
blockquote, figure.notenik-quote-attrib {
margin-left: 2em;
margin-right: 2em;
margin-bottom: 2em;
}
.quote-from:before {
content: "\2014";
padding-right: .4ex;
}