• Resolved nikivee

    (@nikivee)


    In the very beginning stages of customizing my site.

    I wanted to remove the header image from every page except the home page. Succesfully did that with

    .site-branding {
      display: none;
    }
    
    .home .site-branding {
      display: inherit;
    }

    BUT that also gets rid of the site title on non-home pages. I’d like to keep the title if possible. thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • try to target .wp-custom-header instead:

    .wp-custom-header { display: none; }
    .home .wp-custom-header { display: inherit; }
    Thread Starter nikivee

    (@nikivee)

    THANK YOU

    Hello,
    Yes, it did remove the header image on non home pages, but leaves a huge white block instead. Is there a best way to pull the page content up?

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide header image, but not site title, from every page except home’ is closed to new replies.