I get the name of the page on every page, but I don't want it. How can I hide/remove this please. I am using the Twenty Seventeen theme.
Thanks, please help!
Hi Kev,
To remove the page title while the Twenty Seventeen theme is active on your site, go to the Customizer (Appearance > Customize) and paste the following line of CSS into the Additional CSS module:
.page .entry-header { display: none; }
Any CSS you enter into the Additional CSS field will override your active theme's stylesheet. You can use this field to make any number of customizations to your theme's fonts, colors, and layout.
This particular line of CSS simply tells WordPress to hide (display: none;
) any element that has been assigned the class of: .entry-header
on any page containing the class: .page
If you’d like to learn more about CSS, here’s an excellent course for beginners: https://wpinonemonth.com/product/html-css-webinar/
And here’s another: https://wp101.com/go/intro-html-css/
Hope this helps!