• Resolved phozee

    (@phozee)


    Hi there!

    Since the last update, I’m noticing a couple problems with this plugin that are preventing it from functioning correctly.

    The first is that pages are loading as soon as the user starts scrolling, rather than when the user scrolls close enough to the bottom of the page. I can see this behavior occurring by inspecting the DOM in dev tools while I attempt to scroll (loading classes are added all over the place).

    It also appears that blog page links are not clickable, because the .alm-btn-wrap element is appearing over top of the entire containing element.

    Please let me know what I can do to get this to work correctly once again. For reference, my website in question is https://festivalsquad.com and the issue can be seen by clicking any of the categories (i.e. https://festivalsquad.com/category/interviews/) or using the search page.

    Thanks,

    Neil Merchant

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Darren Cooney

    (@dcooney)

    Hi @phozee,
    Looks like you are having a CSS float issue.
    All your <li/> items are set to float: left; you should clear those.

    A quick fix would be to add the following CSS:

    
    .alm-reveal {
        overflow: hidden;
    }
    

    Hope that helps.

    Thread Starter phozee

    (@phozee)

    Thanks so much for the super fast response @dcooney – I added the overflow:hidden to .?lm-reveal and changed my floating elements to display: inline-block and it works just fine now. Much appreciated and keep up the awesome work with this plugin <3

    Neil

    Plugin Author Darren Cooney

    (@dcooney)

    Nice! Thanks for following up!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strange / broken behavior since last update’ is closed to new replies.