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;
}
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;
}
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/
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.