Hello toddaumann. Without knowing your site/theme, I would first suggest the following…
1. Go to your Post/Page
2. View source code
3. Ctrl+F and type your Post/Page title and search
4. Then you’ll come to a line like…
<h1 class=”entry-title”>Post/Page Title</h1>
5. Above entry-title is the class you need
6. Go to your Theme Editor ► style.css
7. Ctrl+F type ‘entry-title’ and search
8. If there’s no such a class, just paste this code there and save
.entry-title {
display:none;
}
9. Now the Post/Page title should be hidden
In many cases the class is ‘entry-title’. So if it changes in Step 4, just replace ‘entry-title’ with that class.
Let us know if that helps.
Thread Starter
ToddA
(@toddaumann)
I am using Suits theme. I have Jetpack installed, and using the Edit CSS feature I was able to successfully use .entry-title { display:none; }
Thanks!
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@lorbach, In future always try to recommend to either do CSS changes in a Child Theme style.css file or Custom CSS plugin.