WordPress Themes, Plugins and HTML Templates › Forums › Dicot WordPress Theme › Remove Date/Author/Type Tag at top of Post › Re: Remove Date/Author/Type Tag at top of Post
June 30, 2015 at 9:17 am
#1611
admin
Participant
Hi,
Quote:
I would like to remove this completely.
Please use the following CSS Code snippet.
– Go to `Appearance > Customize > Theme Custom CSS`
– Use the following CSS Code Snippet
/* In order to remove from everywhere */
.entry-meta-header {
display: none;
}
/* In order to remove from single posts only */
.single .entry-meta-header {
display: none;
}[/CODE]
Thanks[CODE]/* In order to remove from everywhere */
.entry-meta-header {
display: none;
}
/* In order to remove from single posts only */
.single .entry-meta-header {
display: none;
}[/CODE]
Thanks