Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #293517

    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

    #293577

    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

    #296358
    This reply has been marked as private.
    #296438

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.