If is possible to add another logo to the menu bar? One on the left like there is and one on the right?
I found this post kriesi.at/support/topic/add-a-second-logo-to-header/ but it seems to reference the header file that was used in the previous releases of the theme.
Is there a new solution?
Hey McEwans!
Thank you for using Enfold.
Please use this on functions.php:
add_filter('avf_logo_subtext', 'avf_add_logo');
function avf_add_logo($sub)
{
$logo2 = "<img src='IMAGE URI HERE' />";
$sub = "<strong class='logo-2'>{$logo2}</strong>";
return $sub;
}
Add the second logo on the $logo2 then add this on Quick CSS or custom.css to adjust the position of the second logo:
strong.logo.bg-logo {
width: 100%;
}
span.subtext {
position: absolute;
top: 10px;
right: 0;
}
Cheers!
Ismael
Hi i’m still waiting for some support on this ticket. Please help soon….
Hi!
Do you mind creating a temporary admin login and posting it here privately?
Cheers!
Yigit
Hi!
Please review your website now. I have removed the code from functions.php file and added second logo manually in helper-main-menu.php file. You can find custom CSS code i added in Quick CSS field
Best regards,
Yigit
Thank you so much Yigit. This worked perfectly.