lemonmade / bigfoot

A jQuery plugin for creating exceptional footnotes.
http://www.bigfootjs.com
MIT License
936 stars 69 forks source link

Footnotes are much narrower than they are on bigfoot.js #55

Closed Jackmc1047 closed 8 years ago

Jackmc1047 commented 8 years ago

@lemonmade My footnotes are very narrow when activated and also clip their content. How can I make them wider, like they are on bigfootjs.com? I have the code below. Thanks in advance.

<section>
    <article>
        <p>
            text text text<sup><a href="#fn:1" rel="footnote"></a></sup> text text text
        </p>
        <div class="footnotes">
            <ol>
                <li class="footnote" id="fn:1">
                    <p>footnote text</p>
                </li>
            </ol>
        </div>
    </article>
</section>
lukasschwab commented 8 years ago

Hi! Let me guess, you're using jQuery 3.x?

I think you're experiencing the same problem I ran into: https://github.com/lemonmade/bigfoot/issues/54

As described on that issue, I fixed the problem by using an earlier version of jQuery (1.8.3).

If that fixes the issue, I'd suggest closing this issue so we can consolidate the conversation about how to update bigfoot!

Jackmc1047 commented 8 years ago

Thanks for the info. I see you did previously mention this issue. Sorry I missed it.