Viewing 7 replies - 1 through 7 (of 7 total)
  • My guess this is just a bit of a performance issue. The plugin does what it’s supposed to do (making the original menu disappear) but it just takes a little longer it seems.

    Is there a way you can disable other plugins and see if that would make a difference? Just to see if the Sticky Anything plugin itself loads fine.

    Hey!
    I am having the same problem, even when disabling almost all of my plugins.
    Regards!

    Thread Starter telemarker

    (@telemarker)

    yes for me its still the same, it’s definitly not an performance issue of the browser.

    @telemarker A couple of weeks ago I came across this issue somewhere else and I finally figured out what caused it. For a long time, I thought it had to do with performance issues, but that’s not the case.

    The reason is transitions: whenever the sticky element contains transitions, you will see this happen. In your case, you’ve put transitions on a number of elements, such as:

    .main-container a {
        -webkit-transition: all 250ms ease-in-out;
        -moz-transition: all 250ms ease-in-out;
        -ms-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        cursor: pointer;
    }

    Because of this, when the sidebar becomes sticky, that transition actually kicks in: the sticky sidebar becomes visible, but it will take another 250ms before the “normal” sidebar will disappear. Hence, for this short period of time you will see your menu twice.

    I’ll look into adding something general into the plugin that will avoid things like this, but for the time being, you could add this to your stylesheet:

    .original, .original * {
       transition: none !important;
    }

    @prti: Maybe this is also the case for your site, but I won’t be able to tell for sure without seeing it.

    Thread Starter telemarker

    (@telemarker)

    hey mark,
    i just added this to the style.css of my theme and now it works!
    ps: i think you mixed us up ??

    Glad it works!

    Mixup corrected, apologies ??

    My first thoughts was also transitions, but I couldn’t find them.
    Then I went all Rambo with Jquery.. unnecessarily!

    I digged into CCS a little bit more and found the transitions.

    Thanks for help!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to disable double effect’ is closed to new replies.