Navigation überspringen

[Gelöst] Remove Listing Heading

Dieser Thread wurde gelöst. Hier ist eine Beschreibung des Problems und der Lösung.

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 support ticket is created vor 2 years. There's a good chance that you are reading advice that it now obsolete.

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 -

Zeitzone des Unterstützers: America/Sao_Paulo (GMT-03:00)

Dieses Thema enthält 1 reply, hat 2 Stimmen.

Zuletzt aktualisiert von Mateus Getulio vor 2 years.

Assistiert von: Mateus Getulio.

Author
Artikel
#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
Unterstützer

Sprachen: Englisch (English )

Zeitzone: 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.