Dawn theme - Remove the text below Blog headings

I wish to get rid or hide the text that appears below the blogs section on my home page. Anyone got any ideas how do achieve this? Thanks. My website url is https://healinghome.co.in/

Text in the red boxes has to go.

1 Like

Hi @aryaman2
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

.blog__posts.articles-wrapper .article-card__excerpt{
display: none;
}
3 Likes

Hi @aryaman2 ,

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Add this CSS at the bottom

Online Store ->Theme ->Edit code

Assets → component-article-card.css

.article-card__excerpt {
    display: none !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

4 Likes

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.article-card__excerpt {
display: none;
}

Screenshot :- https://prnt.sc/IpgdBbcwjN-z

2 Likes

Worked for me in Spotlight theme. Thank you !

Thanks. This worked perfect on Dawn 15. Bravo!