If you want to remove the post name from all pages, you can modify your php templates or possibly add a CSS rule (which is simpler).
If you only want to remove the name for certain posts, you will need to modify your templates.
You should create a Child theme to make your changes. If you do not, all of your changes will be lost if you update your theme.
what would i put into the css rule and where would i out it?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you post a link to your site where the problem can be seen, someone might be able to give more specific advice.
Also, specify whether you want to remove the titles on all pages or only certain ones.
Thanks
http://www.d5200.org
I would like to remove the top line which reads ‘welcome to the nikon d5200 site’.
i wold like to remove that line from all my pages..
Try adding this to the end of style.css:
.entry-header h1 { display: none; }
And, don’t forget, unless you create a child theme for this change, it will be lost if you update the theme.
brilliant! thanks you very much.