I experimented some with the Developer Tools and figured out the following:
- The left border for blockquotes can be removed with this change:
/* (Border-left changed to 0px) */
.markdown-source-view.mod-cm6 .HyperMD-quote {
background-color: transparent;
color: var(--text-blockquote);
font-size: var(--blockquote-size);
font-style: var(--blockquote-style);
border-left: 0px solid var(--quote-opening-modifier);
}
- The size of the footnotes can be changed with this:
/* (Font-size changed from -2 to 0) */
.cm-s-obsidian .HyperMD-footnote, .footnotes {
font-size: calc(var(--font-adaptive-normal) - 0px);
}
This seems to work!
But I still can’t figure out how to get the footnotes to indent as shown in my previous post. I tried padding-left: 45px;
in the above snippet but it didn’t work. Could anyone help me with this last issue? I’d really appreciate it.