I want the logo on all pages that don’t display the site header.
Again, since I haven’t used this theme and am basing my answers on what the theme demo shows, it appears that ALL pages use the site header, and the logo is part of that header. If you haven’t done any customizations to modify that functionality then the following generic CSS should work:
/* hide logo on home page */
body.home .logo-block {
display: none;
}
To add custom CSS:
- If you have a child theme you can add the CSS to the style.css file.
- If you are using WordPress 4.7+ you can use the “Additional CSS” option in the Customizer.
- If your theme has a custom CSS option you can use that to add the CSS.
- Install a plugin like https://www.ads-software.com/plugins/simple-css/.
If this doesn’t do what you’re expecting then please post a link to your site so I can take a look.