Hey Annette,
try adding this CSS to Theme Options> Advanced Settings and let me know if it works for you:
.wrap.contentclass {
padding-top: 0;
}
If that doesn’t work, can you link to a specific page that you’re hiding the page title on?
-Kevin
Thread Starter
Anette
(@aha-co-creatie)
Hi Kevin,
a little bit better but nog enough… We already leave the pagetitle blank. Do you have an other suggestion maybe for this page?
https://ernastaal.nl/wie-ben-ik/
Here is some CSS that can get rid of the space on that page. If you need to effect any other pages, link them here and I’ll add them to the CSS:
.page-id-17 div#pageheader {
display: none;
}
-Kevin
Thread Starter
Anette
(@aha-co-creatie)
Perfect, this is what we mean. Thank you
Thread Starter
Anette
(@aha-co-creatie)
Could you provide us please the CSS so all pages get rid of the space?
Thread Starter
Anette
(@aha-co-creatie)
Another question concerning this website is: we do not want to show the date in a blogpost so I pasted this CSS code –>
.entry-date {
display: none;
}
This doesn’t seem to work. What do you suggest?
1. You should be able to simply change this CSS to this so you can effect all pages:
div#pageheader {
display: none;
}
2. Try this CSS to remove the dates:
.postdate {
display: none;
}
-Kevin
Thread Starter
Anette
(@aha-co-creatie)
And thank you again, Kevin!
Thread Starter
Anette
(@aha-co-creatie)
One more question: can you give us the CSS for removing the postdates also in the widget : Virtue recent posts?
This CSS should take care of that:
.kadence_recent_posts .recentpost_date {
display: none;
}
-Kevin