Hi,
I just have 2 small things I want to do with the “You might also like” section. I am using debut theme.
-
I’d like to change the case for the section title to title case instead of uppercase.
-
I’d like to align the product prices to the left, so they are in line with the image and product title.
thanks for you help! 
@PatrickCook
Welcome to Shopify Community.
We are Glad to help you.
Kindly Share your Store URl. So that we can help you.
Thank you
Which Case you want to add lowercase.
Can you mark or provide me section which you want to be changed.
.product-recommendations__inner h2 {
text-transform: lowercase !important;
}
.product-card .price {
align-items: left !important;
}
@PatrickCook
Add this code in the Above/ top of the theme.css file
It didn’t work.
I want it to be “You Might Also Like” not “you might also like”.
The price did not align to the left either. It stayed in the center
.product-recommendations__inner h2 {
text-transform: capitalize !important;
}
.product-card .price {
align-items: flex-start !important;
}
@PatrickCook
Add this code
thanks. that worked 
however, the spacing of the letters in the “You Might Also Like” title seem to be a little more spaced than normal? Can I condense this lettering a little please. 
So you want to remove the Spaces
.product-recommendations__inner h2 {
letter-spacing: .01em !important;
}
@PatrickCook
Add this code.
It seems the ‘You Might Also Like’ title is a little bit more spread between the letters than normal. I just want it to be the normal amount of spacing between the letters. Or is that a H1 font problem etc?
Any thing Else you need Help?
Kindly Like your Solution If helpful.