Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #629157

    Guys,

    is there a way to completely disable the header without having to go in to each page and do it manually?

    Many thanks

    #629213

    And where is your navigation than?

    you can set #header to display: none
    and on main set padding-top to “0”

    #header {
        display: none
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0;
    }
    #629260

    Thanks, I’m using a menu in the page. it still brings up a gap at the top though

    #629277

    Hi!

    Please change second code to following one

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0 !important;
    }

    Best regards,
    Yigit

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