Passer la navigation

[Résolu] Remove Listing Heading

Ce fil est résolu. Voici une description du problème et la solution proposée.

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 Il y a 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 -

Fuseau horaire du supporter : America/Sao_Paulo (GMT-03:00)

Ce sujet contient 1 reply, a 2 voix.

Dernière mise à jour par Mateus Getulio Il y a 2 years.

Assisté par: Mateus Getulio.

Auteur
Publications
#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

Les langues: Anglais (English )

Fuseau horaire: 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.