How to hide Author name and date in blog

rainbowsix9

New Member
I tried using this

.entry-meta { display: none; }

it does not work..

By the way, Im using DaVinci theme 1.0

Thanks.
 

Attachments

  • hideauthornamedate.PNG
    hideauthornamedate.PNG
    5.2 KB · Views: 4
E

Ekaterina Sayapina

Guest
I tried using this

.entry-meta { display: none; }

it does not work..

By the way, Im using DaVinci theme 1.0

Thanks.
Hello,

Please try adding this code snippet to Customization => Blog => CSS styles:

.article_date_tags {
display: none;
}

.article_by {
display: none;
}
 
Top