Re: Remove Date/Author/Type Tag at top of Post

#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