Adjust description width under images, Venture theme

Hello

Using the Venture theme - I find it a bit ugly when the headings are wider than the product photo, see below. Also the headings can run into each other a little. Can I fix the line width to be the same as the image?
https://buckandhide.com/collections/lanyards

Next :slightly_smiling_face: Slightly trickier… When I have some headings on one line and some longer ones on two, it messes with the grid. I’d like all of the top lines of the descriptions to align horizontally, is that possible?
https://buckandhide.com/collections/snap-pouches

Thanks!
Jamie

For the headings being wider you can add some padding. Add this to the bottom of your theme.scss.liquid file

@media only screen and (min-width: 750px) {
  .product-card__name {
    padding: 1.3em 
  }
}
1 Like

Perfect, thanks!

Aaah hold on! That also creates padding above the title which affects the crop on all the images. Can I just change the line width? Or can I manually add a line break into the titles..?

Try padding: 0 1.3em; instead