Remove page title but retain the grid posts headers
-
Hi, I am trying to remove the page titles from every page using the following code
}.page .entry-title {
display: none;
}however it also removes the grid posts headers as well. Is there a way to remove only the page title?
The blog I need help with is: (visible only to logged in users)
-
A workaround would be to target pages using specific templates, other than the grid template. For example, this would hide the title on pages using the default or full-width template:
.page-template-full-width-page .entry-title, .page-template-default .entry-title { display: none; } -
-
- The topic ‘Remove page title but retain the grid posts headers’ is closed to new replies.