css - Disable sticky navigation bar on mobile -


I would like to disable sticky navigation bar on mobile (23 cm below).

My navigation bar is already sticky on all devices. Even in mobile devices (like iPhone, iPad) It seems bad so I only want to disable the sticky nav bar on mobile. Please help me :)

You can see my site is my site thanks.

If this is not an option on your theme, then you should query this CSS to a media query:

  @ media (max-width: 600px) {# mastast .top-strip {status: relative; }}   

You may have to add "needy" after "relative" if it does not work. And, of course, just change the max-width to the maximum size of the screen where you do not want to float the boat bar.

Then you will get some extra space between the people's navigation bar (since we just put the navigation bar in the flow of the page) to fix it, you have to search it in your CSS and it only For a screen within a media query, which is more than mobile:

  @ media (minimum-width: 601px) {# masthead # branding {margin: 90px auto 10px! Important; }}   

If you want to test the sizes, then I use it.

Comments

Popular posts from this blog

Verilog Error: output or inout port "Q" must be connected to a structural net expression -

jasper reports - How to center align barcode using jasperreports and barcode4j -

c# - ASP.NET MVC - Attaching an entity of type 'MODELNAME' failed because another entity of the same type already has the same primary key value -