Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #690134

    Hello,
    Please check http://debierbeleving.nl/wp/
    I have two issues regarding the header. Hope you can help me:
    1. I would like the logo to disappaer when scrolling down the site. Not the menu, only the logo. How can I do this?
    2. on mobile phone, I would like to place the logo on the dark background. So I have to move it up a little. How can I do this?

    Thanks in advanced for your help!
    Martine

    #690582

    Solved Nr 1 for you.

    If you want your logo to fadeout when scrolling down do this:

    Add this top custom CSS:

    .header-scrolled-full .logo {
            filter: alpha(opacity=0);
            opacity: 0;
            -webkit-transition: opacity 1s ease-in-out;
            -moz-transition: opacity 1s ease-in-out;
            -ms-transition: opacity 1s ease-in-out;
            -o-transition: opacity 1s ease-in-out;
            transition: opacity 1s ease-in-out;
    }

    And choose this option in your options panel:
    http://postimg.org/image/fl9i90puj/
    Enfold Header Options Panel

    • This reply was modified 8 years, 2 months ago by Pixelbits. Reason: image did not work
    #690592

    Thanks Pixelbits! That works! :-)

    Can anyone help me with my second issue (move mobile menu)?

    Thanks in advanced!
    Martine

    #691734

    Hi,

    Sorry for the late reply!
    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    .logo img {
        max-height: 130px!important;
    }
    .container.av-logo-container {
        min-height: 150px!important;
    }}
    

    Best regards,
    Yigit

    #691735

    Thanks Yigit! :-)

    #691737

    Hi!

    You are welcome, always happy to help :)
    Let us know if you have any other questions or issues and enjoy the rest of your day!

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘(mobile) header issues’ is closed to new replies.