I’m having some issues with logo alignment and the logo link on my site.
The site uses a child theme and has some css for the logo and function added to attempt to link the logo but I can’t get either just right.
I’m also having issues with my envato token for the site which I attempted to generate according to instructions.
Hey tguarente,
Thanks for the login, I see that your logo had a lower z-index than your menu container, so it was behind it.
I adjusted your css to this:
.container.av-logo-container {
top: 0;
z-index: 50;
}
so the logo is on top now and can be clicked, Please clear your browser cache twice and check.
For your token I see you are using Enfold v4.5.5, unfortunately, there was an error in this version that will require a manual update via ftp for the token and future updates to work, if you would like a hand with manually updating Please include FTP access in the Private Content area.
Best regards,
Mike
Hi Mike, thanks for the reply and help.
We have a problem though, now the entire main menu is unclickable.
YIKES, please help asap.
I commented out this fix to re-enable the main menu items.
.container.av-logo-container {
top: 0;
/* removed because it breaks main menu —– z-index: 50; */
}
Where can I get the latest version. I can upload it myself, thanks!
Hi,
Please download the latest version from your Theme Forest account.
Best regards,
Mike
Thanks Mike, I’ve got that downloaded and updated now.
Any luck with the logo issue?
Hi,
Thank you for the update.
You can try this css code to adjust the width of the logo container so that it doesn’t cover the main menu.
@media only screen and (min-width: 768px) {
.container.av-logo-container {
width: 150px;
padding: 0;
z-index: 50;
}
.html_header_top.html_logo_center .logo {
left: 0;
transform: none;
}
}
Best regards,
Ismael