• Hi, Can you help me to remove the page title and the its space (I think is h1.entry-title) from all pages? Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi there,

    Thanks for writing in,

    Would you mind providing us with the URL of your website, meanwhile you can try adding this code under Appearance > Theme Options > Custom CSS:

    h1.entry-title {
      display: none;
    }

    Thanks.

    Thread Starter Uolt

    (@rcai)

    Thread Starter Uolt

    (@rcai)

    The code works quite well except for the page “Courses” that is a woo-commerce function.

    Hi Uolt,

    Try this code to get through with the problem of courses page as well.

    .woocommerce ul.products li.product h3 {
      display: none;
    }

    Hope this helps!

    Thanks.

    Thread Starter Uolt

    (@rcai)

    This last code you send me is not working and if you see the the “courses” page the path string (home > courses) has a different format respect to the other pages…

    https://www.smart-planning.org/sitoprova

    please use a browser inspection tool to investigate these kind of formatting questions, or simply look into the html code of the page in the browser (‘view source’ or similar) …

    h1.page-title { display: none; }

    Thread Starter Uolt

    (@rcai)

    Now it works. thank you so much.

    Uolt, you said that the code to remove your entry title worked, but when I view your pages, I see the entry title…unless I’m looking at the wrong thing. I’m trying to find a way to get rid of the box at the top that displays the pathe (ex: home> Laboratorio). Is this what you were referring to?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Remove entry title’ is closed to new replies.