Is there a way to get the Enfold small fixed header to no change size and re-size the logo?
Hey!
Try adding this code to the Quick CSS:
#header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
height: 88px !important;
line-height: 88px !important;
max-height: none !important;
}
Cheers!
Josue
Many thanks! In my case it worked perfectly with a variant (in order to not affect the spacement of menu’s sub-itens):
#header_main .container, .logo img, .logo a {
height: 88px !important;
line-height: 88px !important;
max-height: none !important;
}
Yes @Josue,
Yes, but with some modifications because I want the header to be a little bit higher than the image (120px in my case). So I broke de code in two pieces:
`
#header_main .container {
height: 140px !important;
line-height: 140px !important;
max-height: none !important;
}
#header_main .logo img, .logo a {
height: 120px !important;
line-height: 120px !important;
max-height: none !important;
padding-top: 10px !important;
}
.
Thank you.