• Resolved nujuminstitute

    (@nujuminstitute)


    Hi,

    Awesome plugin. I’m trying to add brackets to the footnotes’ numbers using the custom CSS below but it’s not working. Can you help me please?

    .modern-footnotes-footnote a::before {
    content: “[“;
    }
    .modern-footnotes-footnote a::after {
    content: “]”;
    }

    Much appreciated.

Viewing 1 replies (of 1 total)
  • Plugin Author prismtechstudios

    (@prismtechstudios)

    Hi @nujuminstitute ,

    You’re close here! This CSS should work:

    .modern-footnotes-footnote a::before {
    content: "[";
    display: inline;
    }
    .modern-footnotes-footnote a::after {
    content: "]";
    display: inline;
    }

    Best,
    Sean

Viewing 1 replies (of 1 total)
  • The topic ‘Adding Brackets’ is closed to new replies.