• Resolved valentina77

    (@valentina77)


    Hello,
    i have a problem using your plugin.
    I’ve created a sidebar with 3 separeted elements (an image on top, a pages list in the middle, another pages list on the bottom). While scrolling down SLOWLY, these 3 elements overlaps themselves and jump in a weird way.
    I’m not really sure how to fix this.
    Here is the link of the website, with the “problematic” sidebar being on the left:
    http://www.iwalldesign.com/brands-ok/

    Thank you in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi!

    This is CSS problem. Look at layout.css line 2632:

    .widget {
        clear: both;
        position: relative;
        padding: 30px 0 30px 0;
        float: none;
    }

    Disable position: relative; property:

    .widget {
        clear: both;
        /* position: relative; */
        padding: 30px 0 30px 0;
        float: none;
    }

    And there will be no jumping!

    Thread Starter valentina77

    (@valentina77)

    Thank you very much for your support.

    It’s much better now but still jumps up and down in a weird way. I was wondering if you could help.

    Plugin Contributor Max Bond

    (@max-bond)

    Change widget padding this way:

    .widget {
        clear: both;
        /* position: relative; */
        padding: 0px 0 60px 0;
        float: none;
    }

    Because padding-top of the first widget activates only in fixed mode!

    Thread Starter valentina77

    (@valentina77)

    Works like a charm!
    Thanks for the tempestive reply, thank you very much!

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

The topic ‘plugin jumping while scrolling down’ is closed to new replies.