New Landing How can we help? Themeforest Theme Support Flexform Hide Topbar Menu in Mobile View

Viewing 8 posts - 1 through 8 (of 8 total)
  • Posted in: Flexform
  • #126271
    mrjWells
    Member
    Post count: 137

    I would like to hide the topbar menu, but only in the mobile view. Tried this CSS but it didn’t work.

    @media screen and (max-width: 320px) {

    #top-bar .visible-phone {
    display: none !important;
    }

    Thanks for your help as always!

    #126316
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Almost there just missing one closing bracket.
    Also the mobile portrait goes to 479px

    Try this one

    
    @media screen and (max-width: 479px) {
    
    #top-bar .visible-phone {
    display: none !important;
    }
    }

    -Rui

    #126323
    mrjWells
    Member
    Post count: 137

    Oops! Thanks for the correction. This code successfully removes the menu items in mobile view, but the top bar associated with the top menu is still visible. Is the a way to remove both the top menu and the top bar in mobile view?

    http://AdvancedLifeSkills.com

    #126351
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please remove last code and use this one new code:-

    @media screen and (max-width: 479px) {
    
    #top-bar .visible-phone,#top-bar {
    display: none !important;
    }
    }

    Thanks
    Mohammad

    #126486
    mrjWells
    Member
    Post count: 137

    Works perfect in Chrome, but for some reason the top bar is still visible in Firefox and Safari.

    #126511
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    You only added:

    #top-bar .visible-phone {
    display: none !important;
    }

    it should be:

    #top-bar .visible-phone, #top-bar {
    display: none !important;
    }

    – Kyle

    #126514
    mrjWells
    Member
    Post count: 137

    My fault. I had the code right but neglected to empty the page cache. Did that and it’s working perfect now in all browsers.

    Thanks!

    #126516
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Ok no problem

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register