• Hello,

    Could you give me advice how to get only header in my page? Maybe it is trifling question, but I cannot figure it out ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi greggoryus,
    sure! You can get this using CSS code.
    Go to your WordPress Dashboard under “Appearance-> Customize-> Additional CSS” and paste this code:

    
    .content-area,
    .site-footer {
    	display: none;
    }
    

    This way you’ll see only the header and sidebar (if used).

    Best Regards,
    CrestaProject

    Thread Starter greggoryus

    (@greggoryus)

    Hey!

    Sorry for delay, but much appreciate for your response ??

    What if I would like to have disabled footer only on the main page, but when it is in other sections i would like to have footer showed?

    Regards,
    Gregory

    Theme Author CrestaProject

    (@crestaproject)

    Hi @greggoryus
    you can try this CSS code:

    
    body.blog .site-footer {
    	display: none;
    }
    

    Best,
    CrestaProject

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page with only header’ is closed to new replies.