Viewing 1 replies (of 1 total)
  • Plugin Author Senff – a11n

    (@senff)

    Hi! Thanks for downloading the plugin.

    The reason why it’s not working on that particular page is because the plugin doesn’t get the right value for the browser window height, and that’s because there is code in your page that is not supposed to be there (or at least not in the right place).

    If you look in the source code of the page, you’ll see there is some CSS before the doctype declaration:

    <style>
    #post-275 img
    {
      height:278px;
      width:420px;
    }
    </style>
                   <!DOCTYPE html>
    ....

    This makes the code invalid — a page should always start with the doctype declaration in order to be valid.

    I’m not sure how the code got there, but it definitely shouldn’t be there. It would be OK to have it practically anywhere else in the code though.

    (Also, make sure there are no spaces before the doctype declaration. Some older browsers don’t deal with that very well.)

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Scroll up / Down buttons are now working’ is closed to new replies.