• Resolved awsviolet

    (@awsviolet)


    please help me to hide title in giga store theme, here is a part of code:

    <header>
    <h1 class=”entry-title page-header”>TEST</h1>
    </header>

    i want to hide it via css. All help will be appreciated, many thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Use this CSS but remember this code will hide all the h1 element which have entry-title class

    h1.entry-title{
    display:none;
    }
    Thread Starter awsviolet

    (@awsviolet)

    Thanks, i have already tried this code but it does not work. Added it to style.css of my child theme

    Can you please post a link to your site where I can see this so I can try to help with some CSS code?

    Thread Starter awsviolet

    (@awsviolet)

    here is it

    Use this one, hope it will help

    h1.entry-title.page-header {
        display: none;
    }
    Thread Starter awsviolet

    (@awsviolet)

    added your code to “wordpress admin >> customize your site >> additional styles” and it works. I’m confused, why it didn’t worked in my child theme style.css.

    • This reply was modified 7 years ago by awsviolet.
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hide page title’ is closed to new replies.