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

    We’re looking to have a combined website that supports two different brands. An example of this can be found on this page (look at the top left logos – Leatherman and LED Lenser and you’ll see what I mean)

    http://www.leatherman.com

    Is this possible with the Enfold theme, or can a customisation be made?

    #404992

    Hey markgibbons243!

    Are you referring to the lenser and leatheman image link at the very top of the page? You can use a filter like this on functions.php:

    add_action('avia_meta_header', 'avia_meta_header_mod');
    function avia_meta_header_mod() {
    	echo "<div id='header-logo1'><a href="URL 1 HERE"><img src='IMAGE URL HERE'></a></div>";
    	echo "<div id='header-logo2'><a href="URL 2 HERE"><img src='IMAGE URL HERE'></a></div>";
    }
    

    Add the image url and links. Make sure that have a Enfold Secondary Menu set on Appearance > Menus panel and Enfold > Header > Extra Elements Header Secondary Menu option.

    Cheers!
    Ismael

    #405633

    That’s amazing support thank you so much!

    Where do I find the functions.php?

    #405643

    Hi!

    Function.php is located in the root of your theme folder or in your child theme if you are using one, we recommend to use a child theme if you are going to do customisations. More info on child themes here: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Best regards,
    Rikard

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