Hello,
This morning I updated the theme to version 2.4 and now the CSS I was using to not have the logo/menu bar resizing is not working.
This is what I have:
.title_container{
display: none !important;
}
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
height: 70px !important;
line-height: 70px !important;
}
The menu stays in the correct size but the logo image keeps resizing.
What can I do to disable that?
Thank you
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.logo img { height: 70px!important;
max-height: 100%!important; }
Best regards,
Yigit
Hey Yigit,
I just added the code and it still doing it.
I checked the source code and looks like it’s a java script thing…
Hi!
Found the issue, please add following code as well
a#LuckyAnchor_228608484_7 { max-height: 70px!important; }
That should do it.
Cheers!
Yigit
Hey Yigit,
Thanks for the help, the code above didn’t really worked because the LuckyOrange plugin adds those anchor IDs with random numbers every time the page loads, what I did was:
.logo > a { max-height: 70px!important; }
That worked.