Theme Author
Tom
(@edge22)
Hi there,
Try this CSS:
.category .page-header {
display: none;
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
Let me know if you need more info 🙂
Thread Starter
floo08
(@floo08)
It works, thanks !:)
Another question.
Is there a way to show the time next to the date ? Either in the archive as in one article ?
Theme Author
Tom
(@edge22)
Thread Starter
floo08
(@floo08)
It works, thank you! But is there a way to
a) hide it in the archive and show it only in the articles
b) hide the time on mobile phones
Thanks! I really like your good support!
Theme Author
Tom
(@edge22)
You would want to use this code instead: https://gist.github.com/generatepress/a2e15b0eaae6edca8324
Then add this CSS:
.entry-date .time {
display: none;
}
@media (min-width: 769px) {
.single .entry-date .time {
display: inline;
}
}