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

    (@max-bond)

    Hello!

    Yes, it’s a common problem. In layout.css there is style definition for widget class:

    .widget {
        padding-bottom: 30px;
        margin-bottom: 30px;
        position: relative;
    }

    position: relative; – that’s the problem.
    You can change it to static, delete or comment.
    Or you may override position property by your own style:

    .widget {
        position: static !important;
    }
    Thread Starter gyopokeith

    (@gyopokeith)

    Thanks for you reply and help!

    I added position: status !important; to the theme file css sheet, but now the widgets separate from each other? There’s a big space between them, and they don’t stay fixed.

    I would really appreciate your help again!

    Thank you

    Plugin Contributor Max Bond

    (@max-bond)

    Remove !important, stay it just static

    Thread Starter gyopokeith

    (@gyopokeith)

    Max you’re the man! Thank you ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Jumping Widget while scrolling down’ is closed to new replies.