Hey there, if I change my “Header Size” to a custom height of 45px in the “Header Layout” section of the Enfold control panel, it works great … however the header height jumps back up to the default height (80px) when shrinking down browser <768px (ie. mobile) … how could I keep it at 45px at all times? Thanks!
Any CSS ideas? Can’t seem to get one that works.
Hey!
Thank you for using the the theme.
Please add this on Quick CSS or custom.css:
@media only screen and (max-width: 989px) {
.responsive .logo, .responsive .logo a, .responsive .logo a img {
position: static;
height: 45px !important;
float: none;
}
#advanced_menu_toggle, #advanced_menu_hide {
position: absolute;
height: 36px;
width: 36px;
line-height: 36px;
top: 60%;
margin-top: -23px;
font-size: 27px;
}
}
Cheers!
Ismael