Topic summary
A user seeks help removing an unwanted line from a section in the Dawn theme.
A community member provides a step-by-step solution:
Steps to resolve:
- Navigate to Shopify admin → Online Store → Themes
- Click Actions → Edit code on the desired theme
- Locate the CSS file in the Assets folder (base.css, style.css, or theme.css)
- Add the following CSS code at the bottom of the file:
.shopify-section.blog-section {
border-top: none !important;
}
- Save the changes
The solution targets the border-top property of the blog section element. The issue appears to be a visual formatting problem that can be resolved through custom CSS. No follow-up confirmation of success has been posted yet.
@UPPFUEL please share store link.
Hi @UPPFUEL
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.shopify-section.blog-section {
border-top: none !important;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

