View Single Post
Old 08-05-2025, 05:05 AM   #13
listyraesder
Junior Member
listyraesder began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Aug 2022
Device: Kobo Clara HD
If you have loads of annoying footnote# classes, wildcards might be a lazy option:

Code:
/* targets all class names beginning with footnote or fn *\
[class^="footnote"], [class^="fn"]  { 
--cr-hint: footnote-inpage;
}
which will apply the style to footnote, footnote1, footnote2, fn, fn1, fn2 etc.

But it'll also match to footnote-reference, fn-ref and other carelessly named classes, so YMMV as always and that's what we get for being lazy.
listyraesder is offline   Reply With Quote