Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1386307
    ahurlburt53
    Participant

    I am currently using super fly and have no need for mobile menu. Please advise in removing blue navbar and menu for mobile devices

    screen shot
    http://i.imgur.com/6JFnkwg.jpg

    website

    Home

    #1386320
    Rupok
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    .x-navbar-wrap {
    	display: none;
    }

    Hope this helps.

    Cheers!

    #1386338
    ahurlburt53
    Participant

    Worked great. I dont know where or why theirs is a large white space on all the pages. Please advise

    http://i.imgur.com/J8nouEL.jpg

    #1386341
    Rupok
    Member

    Hi there,

    I don’t such space on any browser. Are you still seeing this? Ca you try from different browser?

    Thanks!

    #1386363
    ahurlburt53
    Participant

    its there on mobile only not desktop

    #1386522
    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! The space below the header is due to your custom css that sets the height of the masthead.

    .masthead {
       height:161px;
    }
    

    You will need to counter this by setting a dynamic height for the masthead. Please do the following:
    #1] Please add the following css code in the customizer, Appearance > Customize > Custom > Edit Global CSS

    .x-logobar,
    .x-navbar-wrap {
        display: none;
    }
    
    @media(max-width: 979px){
      .masthead {
        height: auto;
      }
    }

    #2] Please add the following JS code in the customizer, Appearance > Customize > Custom > Edit Global Javascript

    (function($) {
        $(window).on('load resize', function() {
            var vheight = $('.x-topbar').height();
            $('.masthead').css('height', vheight );
        });
    })(jQuery);

    Please let us know if this works out for you.

    #1387072
    ahurlburt53
    Participant

    yes that worked tytytyty

    #1387075
    Paul R
    Moderator

    You’re welcome! 🙂

    #1387090
    ahurlburt53
    Participant

    Do you know whats causing this space above revolution slider? screen shot http://i.imgur.com/FZxzWCC.jpg

    #1387102
    Christopher
    Moderator

    Hi there,

    Did you manage to fix it?
    It looks different on my end, please see the attachment.

    Thanks.

    #1387161
    ahurlburt53
    Participant

    weird only does it in chrome?

    #1387186
    Paul R
    Moderator

    I checked in chrome and there is no space.

    https://www.screencast.com/t/5ACj4gOw8Bzt

    Try to clear your browser cache and check again.

    Thanks

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