How to hide site title
-
I am trying to hide a site title on dekalbdems.com from every page.
There is nothing within the theme to check to make it not show, so I have tried various CSS to make it hide. That is not working either.
I have tried to add the following into the custom CSS portion, but it won’t make the title go away.
.home .entry-header {
display: none;
}
.entry-title {
display: none;
}What am I missing?
The blog I need help with is: (visible only to logged in users)
-
Hi dekalbdems
It looks like you’re using a self-hosted WordPress website. (see differences between WordPress.COM and self-hosted WordPress sites here) While this forum is for WordPress.COM users, I will try to help seeing as CSS works for both versions of WordPress. In the future, please use the WordPress.ORG support site for requests with self-hosted WordPress sites.
In the CSS section, try using this code:
#header-text-nav-wrap { display: none;Let me know if this works, or if we need to look at another solution.
-
I apologize; I forgot the end bracket. Here is the correct code to copy/paste:
#header-text-nav-wrap { display: none; }
- The topic ‘How to hide site title’ is closed to new replies.