Home › Toolset Professional Support › [Resolved] Hide the site title completly
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 – 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)
Tagged: Layouts plugin, Views plugin
This topic contains 2 replies, has 2 voices.
Last updated by Akhil 5 years, 10 months ago.
Assisted by: Waqar.
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.
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
you're brilliant , thank you