• Resolved jsanvicentef

    (@jsanvicentef)


    Hi!

    I just started using the plugin on my site but I’m having a little issue. As you can see in the link (http://lagrietaonline.com/las-formas-interna-externa-la-auto-organizacion/), the reference list at the bottom has lost the defined margins for the body. Is there a way to “integrate” it within the body so that does not happen? Otherwise, can I edit how it is displayed (so as to modify the margins, as well as the font size, for instance, or the little arrow at the end)?

    Sorry if the questions make no sense, my technical knowledge is very limited. I had a look at the rest of the topics but couldn’t find an answer I could implement. Thank you!

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

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

    (@yingling017)

    Hi,

    It looks like how your theme is setup you’ll need to use CSS to match the width to the main content. You could add this bit of CSS through the customizer (Appearance > Customize) Additional CSS panel.

    .easy-footnote-title,
    .easy-footnote-wrapper {
        max-width: 640px;
        margin: 0 auto;
    }

    You can also edit the arrow style by targeting this psuedo ::after element with .easy-footnote-to-top:after with CSS.

    Thanks,
    Jason

    Thread Starter jsanvicentef

    (@jsanvicentef)

    Hi Jason,

    Thanks a lot for the quick response. It’s definitely in the right direction, as it did move the title to the margin of the text, but the notes are still all the way to the left. Any idea why?

    The arrow style problem is solved, thanks!

    Best,
    Jorge

    Plugin Author Jason Yingling

    (@yingling017)

    That’s because I had a typo in my code snippet. It should be .easy-footnotes-wrapper I forgot the “s”.

    .easy-footnote-title,
    .easy-footnotes-wrapper {
        max-width: 640px;
        margin: 0 auto;
    }

    That should do it.

    Thread Starter jsanvicentef

    (@jsanvicentef)

    It does! Thanks again!

    Plugin Author Jason Yingling

    (@yingling017)

    Glad I could help! 👍

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Inserting bottom reference list on the body’ is closed to new replies.