Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you point out the title you want to hide on the Homepage for example?
Thanks for your quick reply Andrew 🙂
The homepage is fine, but all the other pages have the page title on the top/header of the page.
For example on this page i would like to hide the text מי אנחנו with the underline.
Thanks,
Roy
-
This reply was modified 8 years, 2 months ago by
roy1990.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the “Additional CSS” part of the dashboard add this:
.so-widget-sow-headline {
left: -999em;
position: absolute;
}
https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress
Thanks Andrew 🙂
Will this hide the text and the underline below or only the text? also would this code hide the title on all pages?
Can i add this code to the main css file directly? Because my WordPress version is under 4.7.
Thanks,
Roy
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Will this hide the text and the underline below or only the text?
The text and underline.
also would this code hide the title on all pages?
Yes
Can i add this code to the main css file directly? Because my WordPress version is under 4.7.
No, use a plugin to manage your CSS modifications like this one: https://wordpress.org/plugins/custom-css-and-javascript/
OK. Thanks Andrew 🙂
I appreciate your help very much.
Have a great day!
Roy
Hi Andrew,
So i tried your suggestion but it didn’t work.
This code did hide the title on all pages.
.entry-title {
display: none;
}
I now need to know how to hide or remove the line under the title, hope you can help. Thanks!
Managed to do it.
Thanks anyways.
Have a great day Andrew!
Hi all. I still have this problem. Tried both suggestions but both did not work. Neither in Additional CSS of the theme neither via the widget Simple Custom CSS. Any other ideas? Cheers.
.entry-title {
display: none;
}
and
.so-widget-sow-headline {
left: -999em;
position: absolute;
}
I had to do a little inspecting with Chrome to come up with this modification on my twenty seventeen child theme to remove page title and minimize gap left by its absense
/*remove page title, no gap*/
#page #content {
padding-top: 13px !important;
}
#page .page-title {
display: none !important;
}
Thank you.
Didn’t work for me.
???
Okee dokee … got it! Page titles not displaying now (good!) … CSS:
.entry-title {
display: none;
}
but the word FOOTER is displaying above the Footer.
ick
How do I get ride of that?
Thanks!