Disabling clicks on blog posts on Home Page

Hi Friends,

I am using the “Trade” theme, and would like to make blog posts un-clickable. In other words, when you hover your mouse over a blog post on the home page, you are unable to click on it and it does not take you anywhere

Let me know how I can make this happen :slightly_smiling_face:

Hello @ayalturki ,
For achieve this you need to follow this steps.

  1. Goto shopify admin and customize theme.
  2. Select Blog Posts section and in custom css add this css like screenshot and save.

.article-card-wrapper a.full-unstyled-link {
pointer-events: none;
}