Header only on HOME Site … not on subsites

  • Unknown's avatar

    Hello:) I would like to see the header of the SKETCH theme only on the startsite … all subsites schould be shown without this header … is this possible? And if yes – how can I manage this? Kind Regards Sabrina (email visible only to moderators and staff)

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Sabrina,

    You can use custom CSS to hide the header image. I can help you get started with basic CSS like showing or hiding this image in your theme.

    To add custom CSS, go to your My Sites page and click the Customize link under the blog’s title. In the Customizer, open the CSS section and in the CSS editor there, you can enter your custom CSS.

    This CSS will hide the header image on all pages of your site:

    .custom-header {
    display: none;
    }

    And if you add this CSS, it will make the header appear again just on your site’s front page:

    .home .custom-header {
    display: block;
    }

    Please let me know how that goes! :)

    If you’d like to make more customizations to the Sketch theme, the expert staff and volunteers in the CSS Customization forum can help you with that. You can post there with the details about what you want to change, and they can help you with that.

  • The topic ‘Header only on HOME Site … not on subsites’ is closed to new replies.