Currently the Anking deck automatically makes my lecture notes field text italics. Personally I think this makes it harder to read especially in dark mode. I am wondering if there is a way to change the text format for just this field. I have tried the Anking add on that allows you to edit the card style, but there does not seem to be anywhere to edit the lecture notes field. I have also tried editing the coding of the card by simply copying and pasting the code for the extra field and editing it to fit for the lecture note field. If there is anyway to do this that I have missed please let me know
2 Likes
edit this block in notetype styling. note that this removes italics from all hint fields.
/* Text When Hint Is Shown*/
.hints {
font-style: italic;
}
to
/* Text When Hint Is Shown */
/* .hints {
font-style: italic;
} */
you can also edit font-style: italic
to bold or underline instead if you would like that.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.