Dear Simdor,
Although I am not sure why you would want to do this, as it is recommended to show visitors what page they are visiting in terms of usability, you can do it as follows:
If you are logged in to the Admin Panel and go to Appearance -> Editor and select style.css there is the following piece of code:
h1 {
color: silver;
font-size: 42px;
font-size: 4.2rem;
font-weight: 300;
line-height: 1.25;
If you change it so that ‘display: none;’ is added, it will be invisible. So like this:
h1 {
color: silver;
font-size: 42px;
font-size: 4.2rem;
font-weight: 300;
line-height: 1.25;
display: none;
Please note that in this case the H1-tag / Title tag is hidden but is actually still there. As this is recommended for SEO purposes I am sure you want to keep it there.
Would you please share with us why you want to do this, because I am curious about that?
Furthermore, if this helped you fix your problem please mark this topic as resolved.
Kind regards,
CS_WordPress