Title: plugin jumping while scrolling down
Last modified: January 21, 2017

---

# plugin jumping while scrolling down

 *  Resolved [valentina77](https://wordpress.org/support/users/valentina77/)
 * (@valentina77)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/)
 * 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/](http://www.iwalldesign.com/brands-ok/)
 * Thank you in advance.

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

 *  Plugin Contributor [Max Bond](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/#post-8685426)
 * 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](https://wordpress.org/support/users/valentina77/)
 * (@valentina77)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/#post-8689294)
 * 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](https://wordpress.org/support/users/max-bond/)
 * (@max-bond)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/#post-8689551)
 * 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](https://wordpress.org/support/users/valentina77/)
 * (@valentina77)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/#post-8694113)
 * 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.

 * ![](https://ps.w.org/q2w3-fixed-widget/assets/icon-256x256.png?rev=2384479)
 * [Fixed Widget and Sticky Elements for WordPress](https://wordpress.org/plugins/q2w3-fixed-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/q2w3-fixed-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/q2w3-fixed-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/q2w3-fixed-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/q2w3-fixed-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/q2w3-fixed-widget/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [valentina77](https://wordpress.org/support/users/valentina77/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-jumping-while-scrolling-down/#post-8694113)
 * Status: resolved