I hope you can help. When I resize the site to a ‘tablet’ size the drop-down from the header menu changes. When full screen the drop-down is on top of the header but when resized I see the bottom of the header and then the background, which is ugly.
Is there some CSS I can use to achieve consistency? And if so where? Z-Order?
I really like the theme and plug-in - makes working with WordPress a brilliant user experience.
Glad you’re loving it! I really can’t see anything wrong with your site. Everything is working from my end, at least for me. Could you take a screenshot of what you are referring to? You can upload it to imgur then just post the link here.
I’m not seeing the same thing from my end. You may be seeing a cached version of that page. Try doing a Hard Refresh on your browser and see if that fixes it. Check screenshot. http://imgur.com/eiUwT0Z
Sorry for the delay in replying … my daughter got her final grades and we’ve been celebrating.
I cleared the cache and removed junk files both from history and using a cleaner. I’m still seeing the same in Chrome and Vivaldi … I’ll check in the morning and see if I have router cacheing.
Hi Mark and Ben,
I have a similar issue.
You can see a site I am working on when it is shrunk down to a phone size - the mobile menu look pretty awful - so would appreciate some help on fixing this? https://drive.google.com/file/d/0Bx4kKvaKeveHVEpBR0tDZ1FidHc/view?usp=sharing
(it is the same on my iPhone 5 too!)
I’d like some direction on how to remove the lines and how to change the header image for mobile size? (maybe a different image, or just the site title)
I can see it now. It wasn’t there before probably because your background image on that header was pulled from an external site and it doesn’t exist. We have 2 options for this. We can remove the background image on mobile or fix the height on mobile so it doesn’t go over the menu. Try either of the CSS snippets below.
/*Removing the header background image on mobile*/
@media (max-width: 767px) {
header.fl-page-header {
background-image: none;
}
}
/*Setting a height for the header background image on mobile*/
@media (max-width: 767px) {
header.fl-page-header {
background-size: auto 160px;
}
}
Sorry I didn’t notice your reply earlier. You can use the exact same code as the first one above to change the background image on mobile. Just change none to url(www.domain.com/mobile-header-bg.jpg).