Search code examples
htmlcssheaderhide

CSS Hide Header on Home Page


New theme and no hide\disable option for page. I would like to hide the header ONLY on the home page: restoresell.com

Please advise of css code sample I can try or ?

SOURCE LINK: view-source:https://restoresell.com/

Thank You


Solution

  • I have checked your code and if you simply want to hide your header on your homepage you can add this into your CSS and this will automatically hide your header

    .header-top-home-three.home-four {
        padding: 0px;
        margin: 0px;
        visibility: hidden;
    }
    
    
    .vc_row {
        margin-left: -15px;
        margin-right: -15px;
        position: relative;
        bottom: 108px;
    }
    
    .header.home-page-four {
        position: relative;
        padding-left: 0;
        border: none;
        position:inherit;
        background: #fff;
        visibility: hidden;
    }
    
    .header .header-navigation.stricky-fixed {
        position: inherit;
        top: 0;
        left: 0;
        width: 100%;
        background: #242424;
    }