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.