Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #879356
    getonlineph
    Participant

    Hi is it possible to have the rev slider always remain on top when you scroll down. like how the header and navigation’s behavior when you choose Fixed Top on the settings.

    Thank You

    #879861
    Christopher
    Moderator

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    #881229
    getonlineph
    Participant
    This reply has been marked as private.
    #881635
    Rad
    Moderator

    Hi there,

    I tried, but not currently possible. Currently, slider dimension is also based on its container, when it’s positioned as fixed like the header, there is no distinct size it can follow. Hence, it disappears.

    Thanks for understanding.

    #882332
    getonlineph
    Participant

    okay thank you

    #883269
    Lely
    Moderator

    You’re welcome!

    #885090
    getonlineph
    Participant

    Hi another question please. is X theme has feature that it shrink the fixed logo when scrolled down? this is a feature from other themes, I’m not sure and I can’t find in X theme if it has this feature.

    Thanks 🙂

    #886236
    Rad
    Moderator

    Hi there,

    Not available yet, but doable through custom CSS using transition. Please add a logo on your navbar, then I’ll provide a basic CSS that you can add 🙂

    Thanks!

    #887504
    getonlineph
    Participant
    This reply has been marked as private.
    #887792
    Paul R
    Moderator

    Hi,

    Yes, you can add it as a menu item after produkte.

    URL: http://71.18.91.243/
    Link text: <img src="http://71.18.91.243/wp-content/uploads/2016/04/Logo.png" style="width:100px;">

    eg.

    http://screencast.com/t/nglP6ZTC

    Hope that helps.

    #887982
    getonlineph
    Participant

    thanks, can I have the css that it will shrink the logo when scrolled down?

    thanks

    #888183
    Christopher
    Moderator

    Hi there,

    Please add following code in Customize -> Custom -> CSS :

    .shrink a {
        transition: all 0.3s ease-in-out;
        width: 89%;
        display: inline-block;
        margin: 0 auto;
    }

    Please add following code in Customize -> Custom -> JavaScript :

    jQuery(function($) {
    
    $(window).scroll(function(){
    
    if($(this).scrollTop()>=10) {
    $('#menu-item-169').addClass("shrink");
    }
    else{
    	$('#menu-item-169').removeClass("shrink");
    }
    });
    });

    Hope it helps.

    #889036
    getonlineph
    Participant

    thank you very much! its working 🙂

    #889651
    Jack
    Keymaster

    You’re most welcome!

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