Support » Theme: Fruitful » Header logo & menu follows on scroll.

  • Resolved GabiClayton

    (@gabiclayton)


    I love the theme, thank you!

    I want the header logo & menu to stay at the top of the page, but on pages long enough to scroll they stay at the top with a grey line beneath them. How can I change this?

    See http://olympiafriends.org/

    Thanks,
    Gabi Clayton

Viewing 3 replies - 1 through 3 (of 3 total)
  • Meiji

    (@meiji_lythtis)

    Hey GabiClayton 🙂 Let me see if I understood, what you want is to get rid of the grey line beneath the menu when the page is long to scroll down?

    If so, you have two choice, going to Appearence > Editor and changing one line of code in the style.css file. If you’re afraid you might change something you don’t want, you just can install the Simple Custom CSS plugin:
    http://wordpress.org/plugins/simple-custom-css/

    Once activated, add the following code:

    .head-container.fixed {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0px 0px 0px;
    -moz-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    min-height: 0 !important;
    background-attachment: scroll !important;
    background-image: none !important;
    }

    Let me know if it fixed it. Nice site you have there, btw 🙂

    Theme Author Fruitful Code

    (@fruitfulcode)

    GabiClayton,

    You can try reduce height of browser window and try to understand why it happens with sticky header. With your small content and big header only way it’s disable sticky header in theme options > header.

    Meiji, your css code can be easy insert to the custom css in theme options without plugin installation.

    Thanks

    Thread Starter GabiClayton

    (@gabiclayton)

    It was the sticky header that was causing it so I disabled that and it now stays at the top of the page.

    Thank you both for your help!
    Gabi

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Header logo & menu follows on scroll.’ is closed to new replies.