Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #697217

    Hello, i need your help for my Enfold Theme.
    I want to insert a logo in the header.
    But what is the ideal size of the logo?

    How do I embed the logo so as on Kriesi?
    (Hide half logo – Kriesi.at Premium Themes – at scroll down?)

    Thanks.

    #697608

    Hey doroth!

    Thank you for using Enfold.

    You should find this note in the logo options.

    Upload a logo image, or enter the URL or ID of an image if its already uploaded. The themes default logo gets applied if the input field is left blank

    Logo Dimension: 340px * 156px (if your logo is larger you might need to change the Header size in your Header Settings

    The logo will inherit the height of the header so should consider the Header Size option as well.

    Best regards,
    Ismael

    #697740

    Here on Kriesi.at – when i scroll down the half header hide…

    How can i do this?

    #697966

    ?

    #698069

    Hey!

    Please refer to this post – http://kriesi.at/documentation/enfold/add-subtext-to-logo-replace-logo-with-site-title/ and add a subtext to your logo. Then please post the link to your website so we can provide you accurate solution.

    Best regards,
    Yigit

    #698162

    hello, thanks for the answer,
    how can i create a text, which fade by Scrolling down – just like on kriesi.at Header…

    #698242

    Hi,

    Please post the link to your website if you have added subtext by referring to the link i posted above so we can provide you custom CSS code :)

    Best regards,
    Yigit

    #698282

    Hello!
    Here the Link from my Betaversion.
    I have added

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "Company Name";
        return $sub;
    }

    in the functions.php

    But there is no text, i want to fade out the text when scroll down.
    The Logo should be always displayed, but shrinking when scroll down.

    #698286

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .logo img {
        float: left;
    }
    .header-scrolled .subtext {
        transition: opacity 0.4s ease-out;
        -moz-transition: opacity 0.4s ease-out;
        -webkit-transition: opacity 0.4s ease-out;
        -o-transition: opacity 0.4s ease-out;
        opacity: 0;
    }

    Cheers!
    Yigit

    #698294

    thanks, an how can i remove the link from the subtext and logo

    #698304

    Hey!

    Please add following code to Quick CSS as well

    .logo { pointer-events: none !important; }

    :)

    Cheers!
    Yigit

    #698311

    Thanks, for your answer!
    How can i change the font of the text?
    Thank you for all! :)

    #698314

    Hey!

    Please add following code to Quick CSS as well

    .subtext { color: orange; font-weight: normal; font-size: 20px; font-family: arial; }

    Cheers!
    Yigit

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