How do I remove date in blog post landing page for Maker

Hi @UmbelinaC

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the css file:

.article–item–date, .article–item-dot {display: none;}

Regards,

San

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme–critical.css / theme–async.css and paste this at the bottom of the file:
.blog--list--item-timesince {
display: none;
}

Hello @UmbelinaC

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme–async.css>Add this code at the bottom.

.blog--list--item-timesince {
    display: none;
}