Hey guys –
After the latest update, the headers have taken a turn for the worse. Take a look at http://leecasey.net/abstracts/ on mobile and you will see the issue. Before the update, everything was fine. Any help would be great.
Thanks.
David
Hi David!
Please go to Enfold theme options > Header > Mobile Menu > Header Mobile Menu activation and choose 990px. Then add following code to Quick CSS
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
height: auto !important; }}
@media only screen and (max-width: 480px) {
#advanced_menu_toggle {
top: 115%; }}
Best regards,
Yigit
Hey Yigit – That helped. The logo still needs to size down just a little on phones though. It is still a little too wide.
Hi!
You can add a width attribute to Yigits code like:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
height: auto !important;
width: 200px !important;
}
}
Instead of 200px insert your custom logo width value.
Cheers!
Peter
Thanks Peter and Yigit.