Anyone know how to get rid of lines under text in dawn theme
@Ecomowner please share the link. It would be helpful to troubleshoot!
Hi @Ecomowner
Please share the link to the page where you encounter the issue so we can check and help.
Hi @Ecomowner
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
store is calmingpaws.store
Hi @Ecomowner. Looking at the image, it’s difficult for me to know exactly which block you want to remove. However, here are the steps you can follow:
Identify the class: of the block you want to delete. Right-click on the block and select Inspect in your browser. For example, let’s say the block has the class lines-under-text
Edit your CSS: From your Shopify admin, go to:
- Online Store → Themes → Customize.
- In the left sidebar, click Theme settings → Custom CSS.
- Then, add this code:
.lines-under-text {
display: none !important;
}
Optional: If you don’t want to hide the entire lines-under-text class but rather its parent container, target the wrapping class instead.
For example, if the wrapper class is product-detail, you could use:
.product-detail,
.lines-under-text {
display: none !important;
}
Make sure to preview the changes before applying CSS to your live theme.
To be safe, it’s also a good idea to back up your base.css file first in case you need to revert.
Good luck. I hope this helps ![]()

