Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter gulshen

    (@gulshen)

    Hi there,

    Did you remove the logo from your theme? In case you’d like to add it back: You could hide it on all pages apart from your home page with the following custom CSS:

    .site-logo {
        display: none;
    }
    
    .home .site-logo {
        display: block;
    }

    If you’d like to hide the entire header area on all pages apart from the home page then the following could be used:

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

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Let me know if that’s helpful or if you were hoping to achieve something slightly different.

    Thread Starter gulshen

    (@gulshen)

    Thank you so much! The first code is the one I needed :). But the logo is now on the left side, I wanted it in the middle of the page.
    Also I would like to have a small header with a small logo on the other sites, but I think I need to open another topic for that, right?

    • This reply was modified 7 years, 7 months ago by gulshen.
    Thread Starter gulshen

    (@gulshen)

    Right now I use the second code but the first one is actually more, which I wanted.

    • This reply was modified 7 years, 7 months ago by gulshen.
    Moderator Kathryn Presner

    (@zoonini)

    Are you all set here?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Logo Picture only on the front page’ is closed to new replies.