Passer la navigation

[Résolu] hide the blog title only for that page

This support ticket is created Il y a 2 weeks, 5 days. 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.

Ce sujet contient 1 reply, a 1 voix.

Dernière mise à jour par Christopher Amirian Il y a 2 weeks, 5 days.

Assisté par: Christopher Amirian.

Auteur
Publications
#2868567
Captura de pantalla 2026-07-15 105925.png

Hello,
I want to hide the blog title only for the page that I am using Toolset. If I hide all the post title with this:
.title_subtitle_holder {
display: none;
I cannot see the title for my post blog.
Please, how can I hide the title only for these pages creates with Toolset?
The page are lien caché
I attached you and screenshot.
Best regards,
Nuria Benaches

#2868572

Christopher Amirian
Supporter

Les langues: Anglais (English )

Hi,

Welcome to Toolset support. If you want to hide the title only for that specific page, please add this CSS code to your theme:

body.postid-3093 .title_subtitle_holder {
    display: none;
}

But if you want to hide the title for all Artista post type single post entries, use this CSS code:

body.single-artista .title_subtitle_holder {
    display: none;
}

Thanks.