Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #308512

    What is the correct code for doing this so that as the page is scrolled, the page content does not appear in that area? (see link)

    #wrap_all {
    margin-top: 6px;
    }

    #308520

    Hey!

    Try adding this code to the Quick CSS:

    .html_header_top.html_header_sticky #header {
        top: 0;
    }

    Cheers! 
    Josue

    #308631

    that did not change anything …that i could notice

    #308653

    Hi!

    Are you referring to this? if so, the code i provided should work, try purging your caching/minification plugin.

    Best regards,
    Josue

    #308995

    yes exactly what i was referring to!

    i:
    added your code
    turned off plugin

    your code simply eliminates the 6px box border at the top

    is there a way to have that border and eliminate what you reference in your screen grab?

    #309000

    Hi!

    That’s not possible, one thing you can do however is remove that space only when the page is being scrolled, use this code instead:

    .html_header_top.html_header_sticky #header.header-scrolled {
        top: 0 !important;
    }

    Regards,
    Josue

    #309019

    Thats beautiful thanks for thinking of that!

    #309033

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Boxed Layout: Add space above header’ is closed to new replies.