Skip Navigation

[Gelöst] Hide the site title completly

This support ticket is created vor 5 Jahre, 3 Monate. 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.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

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

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 2 Antworten, has 2 Stimmen.

Last updated by Akhil vor 5 Jahre, 3 Monate.

Assisted by: Waqar.

Author
Artikel
#1190263

Hi waqar, good day.

this might be on css issue,

If you reload this link :hidden link , you can see a glimpse of the "title" loading then go to hide by top header.

is there anywhere to remove that ? thanks.

#1190329

Waqar
Supporter

Languages: Englisch (English )

Timezone: Asia/Karachi (GMT+05:00)

Hi Dee,

Thanks for asking! I'd be happy to help.

The custom CSS code that is loaded from inside a View, is loaded in the page's markup. But by the time that code has loaded, page's rendering has also started and you see a glimpse of the page's title until the CSS code to hide it becomes available to the browser.
( note: this is how CSS code and browsers work in general and it is not something specific to any particular plugin, theme or platform like WordPress )

To avoid this, you can load any CSS code that controls or adjust the theme's design elements further up in the markup.

For example, you can move the code to hide that page title at WP Admin -> Appearance -> Customize -> Additional CSS.

Note: The code that will be included in "Additional CSS" field will load on all pages of the website. To limit its effect to only the "New Launch" post type's archive page ( hidden link ), you can change the code from:


header.page-header {
display: none;
}

To:


body.post-type-archive-new-launch header.page-header {
display: none;
}

I hope this helps.

regards,
Waqar

#1190854

you're brilliant , thank you

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.