Changing All Products collection to all caps

I’m stuck on the coding for this, have been trying different variations for an hour now. Can anyone tell me how to 1) make products be in all caps (its the all products collection) and 2) remove some of the white space above and below? Have been trying different styling options in theme.css but no luck.

using debut

What’s your website url? What have you tried so far?

its https://blade.industries/collections/all

I’ve tried

#shopify-section-collection-template{
text-transform: uppercase;
padding: 0;
}
.template-collection .grid-link__container a .grid-link__title{
text-transform: uppercase;
}

Add this code at the end of your CSS file (ThemesEdit codeAssetstheme.css :disappointed_face: :

.main-content {
    padding-top: 10px;
}
.section-header {
    margin-bottom: 0;
}
.section-header h1 {
 text-transform: uppercase;
}
1 Like

That worked!!! Thank you so much

1 Like