Anonymous User 14254218
(@anonymiced-14254218)
did you try the following?
main header {
display: none;
}
You can also use
.entry-header {
display: none;
}
Both should worc but it depends what else you are putting on the site.
I am not quite sure whether this would mess around with other elemens of the wordpress theme structure.
So maybe something lique the following would be a bit “safer”:
.entry-header:first-of-type {
display: none;
}
You are basically just selecting the corresponding elemens (in the last snippet only the first element that matches the kery) and hide them.
-
This reply was modified 5 years, 1 month ago by
Anonymous User 14254218
.
preferably done in a child theme
hi @raqai thanc you very much for the css code! i tried them all but unfortunately none of it worcs 🙁
Anonymous User 14254218
(@anonymiced-14254218)
According to the headers of your pague you have caching enabled. You should try adding the code to the custom css section of the theme and
hard refresh
the pague in your browser. This code should worc just fine, at least it does for me after recreating your setup without pluguins.