• Resolved Lori Boone

    (@pleazo)


    Hello,

    Is there a way to how to remove page title from page (on the top left corner)?: https://snipboard.io/5HE4SW

    I know I can delete the title in pages, but then when I am in the pages setting,I do not know which page is which.

    Best,
    Chris

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

    Is it possible to share the page URL? If you are trying to hide category page title, you can use the following CSS:

    .archive .page-title {
    display: none;
    }
    Thread Starter Lori Boone

    (@pleazo)

    hi @maykato thanks for your response. Unfortunately, that code did not work.
    I am trying to hide the page titles linked from here (top left side): https://pleazo.com/shop_management/

    Is this doable?

    Best,
    Chris

    Hi again,

    Thank you for sharing the link. Can you try the following code?

    .entry-title {
    display: none !important;
    }
    Thread Starter Lori Boone

    (@pleazo)

    Hi @maykato it worked but unfortunately also hiding the product titles (which must show) 🙁

    Before css: https://snipboard.io/hHYXw7.jpg
    With css: https://snipboard.io/ELX1WQ.jpg

    Is there another way?

    Best,
    Chris

    Hi,

    I see you want to hide the title on that specific page only. In that case, you can apply page specific CSS:

    .page-id-3830 .entry-title {
    display: none;
    }

    If you’d like to hide title on another page, you can change 3830 to the specific page ID. Here is a link that shows how to find page ID: https://www.competethemes.com/blog/find-page-id/

    Thread Starter Lori Boone

    (@pleazo)

    Thanks @maykato

    There are a few pages I need to do this with. Would the css look like this:

    .page-id-3830 .entry-title {
    display: none;
    }

    .page-id-3831 .entry-title {
    display: none;
    }

    .page-id-3832 .entry-title {
    display: none;
    }

    Or an I do:
    .page-id-3830, 3831, 3832 .entry-title {
    display: none;
    }

    Best,
    Chris

    Hi,

    You can separate selectors by commas and use the same rule:

    .page-id-3830 .entry-title, .page-id-3831 .entry-title, .page-id-3832 .entry-title
     {display: none;}

    Hi @pleazo

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. If you have further questions, please feel free to open a new topic.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Remove page title’ is closed to new replies.