Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #351706

    Timmid
    Participant

    Hello X Theme,

    I’ve set up a website design like the integrity demo. But the menu has some sort of error. When you scroll down the menu doesn’t stay on top after the slider like the integrity 1 demo but pops up a little later. I’ve removed al the Css and JavaScripts to test if there was some sort of conflict and also try to import the demo content again but that doesn’t fix it.

    Can you help me?

    #351707

    Timmid
    Participant
    This reply has been marked as private.
    #351717

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in!

    We’d recommend that you clear your caching plugin, and disable it during development. This can cause Customizer changes to not take place on the front end. It will eventually show up when the cache regenerates, but it’s not ideal if you’re looking to see your changes immediately. Caching plugins are best to turn on only when you’ve finished building the site.

    You could also try testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

    Please let us know how it goes.

    #351734

    Timmid
    Participant

    I deactivated all plugins that are not supported with X theme. And as far as i know i didn’t had a cache plugin running. But still have the problem.

    #351749

    Rad
    Moderator

    Hi there,

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks!

    #351757

    Timmid
    Participant
    This reply has been marked as private.
    #351782

    Paul R
    Moderator

    Hi,

    Upon checking, I can see your menu is working as it is in integrity demo.

    http://screencast.com/t/pvBEFB38BG

    Kindly activate wp super cache and clear it’s cache then deactivate it again.

    http://www.inmotionhosting.com/support/edu/wordpress/recommended-wordpress-plugins/clearing-cache-in-wordpress

    After that clear your browser cache too then refresh your site and check if the issue is still there.

    Thanks

    #351797

    Timmid
    Participant

    Strange. Did everything you asked but still have the problem that the top menu jumps in late.

    I checked Revolution slider if there was a problem in the settings and if i set it to auto responsive the menu works fine. But on Full screen the problem is back. I want the slider to be full screen.

    #351801

    Timmid
    Participant
    This reply has been marked as private.
    #351815

    Paul R
    Moderator

    Hi,

    You can try adding this in custom > javascript box in the customizer(Appearance > customize)

    
    
    jQuery(function($) {
       var distance = $('.x-navbar').offset().top;
        $(window).scroll(function(){       
          if($(window).scrollTop() >= distance ){
              $('.x-navbar').addClass('x-navbar-fixed-top');
            }
    });
    });
    

    Hope that helps.

    #351847

    Timmid
    Participant

    Thx so much this fixed it!

    #351902

    Zeshan
    Member

    You’re welcome!