Hi there, i have just changed theme to About this theme
I am trying to remove the date on blog posts but i cannot find any settings and unsure what to put into the site header code injection.
Any help would be amazing.
Hi there, i have just changed theme to About this theme
I am trying to remove the date on blog posts but i cannot find any settings and unsure what to put into the site header code injection.
Any help would be amazing.
For the front page:
<style>
.gh-card-date { visibility: none }
</style>
For individual posts, add this:
.gh-article-meta time {visibility: none }
But that leaves behind a – before where the time should be. Unfortunately, that’s a text node, and I’m not managing to hide it without hiding the whole .gh-article-meta. (Argh.)
Got a link to your site?
sure thing
Sorry - that should have been either visibility: hidden
or display: none
Sorry for the confusion! :)
Super, all working now thank you
.gh-card-date { display: none }is what i used
This is what i used