Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1014213
    kobyco2
    Participant

    Hello there,

    This is my website:
    http://ad-it.online/

    I want to make a sticky menu exactly as I have right now + a non sticky menu that will show only when I am on the top of the page – this menu will be without the button as I have this button on my main image

    Thank you

    #1014237
    Nabeel A
    Moderator

    Hi there,

    Please add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript

    jQuery(document).ready(function($){
    	$('.home .menu-button-kob').hide();
    	var image_height = $(".home #x-section-1").outerHeight();
    	$(window).scroll(function(){
    		if ($(this).scrollTop() > image_height) {
    			$('.menu-button-kob').fadeIn();
    		} else {
    			$('.menu-button-kob').fadeOut();
    		}
    	});
    });

    Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

    #1042027
    kobyco2
    Participant

    Thank you so much, works great!

    #1042612
    Prasant Rai
    Moderator

    You are most welcome. 🙂

  • <script> jQuery(function($){ $("#no-reply-1014213 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>