I have an installation where the header logo is displaying fine in desktop, and shrinks correctly on scroll, but when I use a mobile screen size then the logo gets placed at the correct width but it “hides” behind the NAV menu?
Desktop Render:
Mobile Render:
http://www.plantcafe.co.za/home/
sorry I thought I had the blocking plugin on, but it’s open for now (it’s not live yet).
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 480px) {
.responsive #header_main .container {
height: 160px !important;
}
.logo, .logo a {
height: 116px!important; }
}
Best regards,
Yigit
Your suggestion works. I’ve added it into a max-width of 767, because that’s when it starts.
Any ideas about why the logo still shrinks when you scroll on mobile layout? I thought it was only for when you have a locking top header?
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
.logo, .logo a, .logo img {
max-height: 116px !important; }}
Best regards,
Yigit
Puuurfect! Thanks so much.