• Resolved Paul Gibson

    (@biblequestions)


    Can the numbers for footnotes be indented? I tried using

    .easy-footnotes-wrapper {
    text-indent: 5%;
    }

    but that put space between the number and the footnote, rather than indenting the number itself.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jason Yingling

    (@yingling017)

    Hi there,

    You’ll want to use margin to indent the full list.

    .site-content .post .entry-content ol.easy-footnotes-wrapper, .site-content .page .entry-content ol.easy-footnotes-wrapper {
        margin-left: 30px;
    }

    That should match the margin on the other lists in your theme. You need the extra rules because it appears your theme has a very specific CSS rule setting the left margin to 0 already. The extra classes will help overpower that selector.

    Thread Starter Paul Gibson

    (@biblequestions)

    Thank you! That worked beautifully.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can footnotes be indented’ is closed to new replies.