How do I remove the padding in the word “Backpacks”? It doesn’t matter which word I used it keeps wrapping and started a new line. It’s for a “Featured Collection” section.
1 Like
Hi @felixr101 ,
Would you mind to share your URL website? with password if its protected. Thanks!
https://pinecrestoutdoors.com/ is the site.
Thank you fro the information. Try 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:
- And Save.
.collection-card__meta {
margin: 0px;
}
@media (min-width: 749px) and (max-width: 792px){
p.h1.collection-card__title {
padding: 2px;
}
}
It wrap on the specific size so I adjust it.
I hope it help.

