Archived topic
Missing Header on tablet view
5 replies · Started by Samiline on March 7, 2022
Hello I am having issue on my header. It seems that the header keeps disappearing when I changed it to tablet view. On mobile view every thing is good. I just increased the breakpoint of mobile menu still then this happens.
Here is a screenshot of what I mean.
https://drive.google.com/file/d/1S_Otyzy-uzjGF3n5zuKx1TVOuVhP_gx5/view?usp=sharing
Thanks!
Hi there,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Hello,
Thank you for your help. Kindly see the provided login details
Hi there,
yeah thats an issue with merged headers set to only Mobile, they won't respect a modified mobile breakpoint with that setup. You can try adding some CSS to fix that:
@media (max-width: 870px) {
.main-navigation, .main-navigation ul ul {
background-color: #fff !important;
}
#mobile-header .site-logo.mobile-header-logo {
display: block !important;
}
.header-wrap {
position: static;
}
}
Thanks David!
That worked perfectly! Just what I needed. Thanks again!
Glad to hear that!!