Remove text below blog's heading in Refresh Theme

Topic summary

A user wants to remove the excerpt text appearing below blog post headings on their Shopify store using the Refresh theme.

Proposed Solutions:

  • Add actual content: The excerpt may be placeholder text. Adding rich text content to blog articles or filling in placeholder text settings in the theme editor’s section/block settings could resolve this.

  • CSS solution: Hide the excerpt by adding custom CSS code:

    • Navigate to: Online Store → Theme → Edit code → Assets → base.css
    • Add the following code at the bottom:
      .article-card__excerpt {
        display: none;
      }
      

The discussion remains open with no confirmation of which solution worked.

Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

I’d appreciate if someone can help me deleting the excerpt (text below the blog heading) from my blog. I am attaching a screenshot for reference.
My store address is: https://sk8ology23.myshopify.com/

The password is: uskian

I am using Refresh theme

That should be a result of placeholder content, either put in the blog articles actual rich text content, or from the theme editors section for that blog having dummy content , or in some cases a section/block setting that has NO text added to it yet autofills placeholder text.

Hello @technase

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

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

.article-card__excerpt {
    display: none;
}
1 Like