Tagged: ,

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #605882

    Hi.
    What a wonderful theme! Thanks a lot.

    I have one question.

    I want to set up 2 different logo images at the header.
    (actually it’s same thing but the size should be changed when the page scrolled down. – exactly the same with your page, kriesi.at)

    Thank you.

    #605883

    Hey cherhy!

    Please refer to this post – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ and widget area to your header.
    You can also refer to this one – http://kriesi.at/documentation/enfold/add-subtext-to-logo-replace-logo-with-site-title/

    Regards,
    Yigit

    #606084

    hey!

    Hi Yigit, I’ve checked the post you have linked, but i can’t undersatnd how i can put an image into a wiget. My logo area is seted “Logo on the left and menu on the right” i need to insert another logo next to one is already there.

    could you help me

    Thanaks so much, and i appreciate your work

    #606495

    Hi!

    Add this in the functions.php file, adjust the href and image src value:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "<a class='second-logo' href='#'><img src='_IMAGE_URI_HERE_' /></a>";
        return $sub;
    }

    Use this in the Quick CSS field in order to adjust the position of the logo:

    .second-logo {
        position: absolute !important;
        top: 0;
        right: 0;
    }
    
    .logo {
        width: 100%;
    }

    Cheers!
    Ismael

    #606546

    Hi Ismael, i need to understand what you mean when you speack about to adjust href:

    Can you explain me better please? i don’t know what value it is “href”

    thanks

    #606805

    Hey!

    You should change # inside href attribute with your link and _IMAGE_URI_HERE_ in src attribute with a link to your image

    Regards,
    Yigit

    #606817

    hi Yigit. Thanks

    so i have to put the of my site in place of #, is it right?

    #606902

    Yigit, Ismael.

    Thanks for your advice.
    However, the solutions you guys said are not working at all.

    This is captured image of my website.

    header logo

    -> I wanna adjust vertical alignment of the logo ‘middle’
    Is there any solution about this problem?

    header logo(when scrolled)

    -> when the page scrolled down, the size and alignment of header logo is very good. :)

    #606903

    Hey!

    1. Once you add the code correctly in functions.php depending on the type of menu you use

    2. Then create a header widget in “Custom Widget Area” which you can find in Appearance > Add Widget Area

    3. Add a text widget to the header widget area and insert the logo image as shown in the below screenshot.

    To show two logos you can add another text widget and add a custom class name to the logo as Ismale mentioned above logo and logo-2 or something similar and style it using CSS…

    Cheers!
    Vinay

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