• I can not seem to find a way to hide the title and tagline in the Storefront theme. I have tried several plugins and nothing seems to work. I have also tried adding CSS code suggested. Where am I missing the solution? I’m also using the Woocommerce Plugin.

    • This topic was modified 11 months, 4 weeks ago by lgordonb.

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

Viewing 1 replies (of 1 total)
  • Hello @lgordonb!

    If you’re looking to hide just the title and tagline in your Storefront theme, you can do so by adding a simple CSS snippet. Here’s the code:

    /* Hide title and description */
    .site-title,
    .site-description {
    	display: none !important;
    }

    The !important rule in CSS is used to make sure this particular style will always be applied, regardless of other conflicting styles that may exist.

    However, I noticed that you’re currently using the Block Shop theme. If you need further assistance with this theme, it’s best to contact our vendor directly for support here:

    https://woo.com/my-account/contact-support/

    Or try this CSS snippet:

    /* Hide title and tagline */
    header .logo span {
        display: none !important;
    }

    I hope this helps! Let me know if there’s anything else I can assist you with.

Viewing 1 replies (of 1 total)
  • The topic ‘Hide Title and tag line’ is closed to new replies.