Tagged: header
Hey guys,
I love the fixed header on Enfold, but the resizing thing isn’t going over well with the client. Can I make it always just be the smaller size and still be fixed at the top.
Hey Andrea!
In your custom.css file you will have a Desktop Styles media query. Add this into that and adjust as needed:
#header_main .container, .main_menu ul:first-child > li > a {
height: 88px !important;
line-height: 88px !important;
}
Regards,
Devin
I added that code but also had to make sure that the logo still didn’t resize and the image came right up to the end of the header bar so I added this too:
.logo img, .logo, .logo a {
max-height: 88px !important;
}
.fixed_header.social_header #main {
padding-top: 118px;
}
Thanks!