To whom it may concern,
Is there a way to remove the option to insert a default logo for the site page and allow us to insert the logo somewhere in a bar menu option ourselves? I would still like the top menu to shrink upon scrolling but it will just affect the height of the menu.
Currently, I would like to insert both logo and menu options on the same bar, but currently the enfold theme doesn’t allow such an option.
Have been trying to insert a UberMenu in but the layout of the top menu seems to keep bouncing out of alignment. Please do advice. Currently, the UberMenu seems to have a display issue that is affected from use of Enfold theme, is there a workaround way for it?
Thanks!
Regards,
Robert Chai
Hi sgrobert!
1) If you want to remove the logo completely insert this code into the child theme functions.php or enfold/functions.php file:
add_filter('avf_logo_final_output', 'avia_remove_default_logo', 10, 6);
function avia_remove_default_logo($logo, $use_image, $headline_type, $sub, $alt, $link){
return '';
}
2) We can’t assist with the integration of Ubermenu but afaik the plugin author published a how-to article here: http://sevenspark.com/docs/ubermenu-enfold . You can also use the ubermenu support forum if you have questions regarding the plugin/theme integration.
Regards,
Peter
Hi!
Try this css code and insert it into the quick css field:
.html_header_top.html_bottom_nav_header #header_main {
display: none;
}
.html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main {
padding-top: 72px;
}
.ubermenu .ubermenu-item.ubermenu-item-level-0 {
margin-top: -15px;
}
Cheers!
Peter