-
I'm trying to figure out if it's possible to change the font size only for the footnotes ? or wouldn't it be possible in how i've set it up? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Use CSS to do that. Since you're using admonitions inside footnotes, you would need to change the font size for those, too. I haven't tested the following code, but something like the following should work: .md-typeset .footnote,
.md-typeset .footnote .admonition {
font-size: 20px;
} |
Beta Was this translation helpful? Give feedback.
-
not exactly what it should do. |
Beta Was this translation helpful? Give feedback.
-
Okay adding /*Change footnotes font size */
.md-typeset .footnote {
font-size: 12px;
} Does a good result so it doesn't look like it's part of the guide, thnx |
Beta Was this translation helpful? Give feedback.
Use CSS to do that. Since you're using admonitions inside footnotes, you would need to change the font size for those, too. I haven't tested the following code, but something like the following should work: