CSS Code for removing a page title from view
-
I’m wanting to use css to remove the page title from visibility from my home page, does anyone have an idea on what coding would achieve that? I only want it on this one concrete page and Im also a complete novice with css. Thanks for any help :)
The blog I need help with is: (visible only to logged in users)
-
You can accomplish this with the following CSS:
/* Remove title */ .entry-title { display: none; }To learn more about how CSS editing works at WordPress.com, see these helpful pages:
http://en.support.wordpress.com/custom-design/css-basics/
http://en.support.wordpress.com/custom-design/editing-css/
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
If you have additional customization questions, please try posting to our CSS Customization forum:
https://en.forums.wordpress.com/forum/css-customization
When you create a CSS-related help request, please make sure to select or link to the WordPress.com site you’re working on and include a clear description of the change you’re trying to make.
Let us know if you have any more questions :-)
-
Thanks so much for the help, ive got it to work but im missing the knowledge of how to apply it to just the one specific page. The page id is: “page-id-21385” but dont know where in the coding i would place this info to apply this action in css to only that page. Sorry for the basic level question but im still finding my feet with css.
-
You can use the following CSS to accomplish this:
/* Remove Title On Home Page */ #post-21385 > header > h1 { display: none; }For additional customization questions, please try posting to the CSS Customization Forum:
https://en.forums.wordpress.com/forum/css-customization
If you have additional questions, please let us know.
-
thx pmciano that worked perfectly.
I’ll use the forum you mentioned next time for CSS queries.
-
- The topic ‘CSS Code for removing a page title from view’ is closed to new replies.