Skip Navigation

[Resolved] Remove Listing Heading

This thread is resolved. Here is a description of the problem and solution.

Problem:
The customer is trying to remove the listing on top of the "individual post" page using the CSS code .post .entry-title { display: none; }, but it hasn't worked.
Solution:
I suggested trying a different CSS code and it fixed the problem:

.site-main h1.entry-title {
    display: none !important;
}

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Sao_Paulo (GMT-03:00)

This topic contains 1 reply, has 2 voices.

Last updated by Mateus Getulio 8 months, 1 week ago.

Assisted by: Mateus Getulio.

Author
Posts
#2701370
Screenshot 2024-06-06 at 12.07.08.png

Hi - I'm trying to figure out how to remove the listing on top of the "individual post" page. I've used the following CSS:

.post .entry-title {
display: none;
}

But that hasn't worked.

#2701472

Mateus Getulio
Supporter

Languages: English (English )

Timezone: America/Sao_Paulo (GMT-03:00)

Hello there,

Can you try the following CSS code to see if it works for you?

.site-main h1.entry-title{
    display: none !important;
}

Thank you, please let us know.
Mateus

#2701526

Thank you! That worked.