I need to change the line spacing for my H1 titles

Hello helpful people,

My H1 title lines are way to spaced out, can you help me make them closer together?

URL is https://www.littlelovesstore.com/products/essential-knit-long-sleeve-romper-chocolate

Thank you!

Hey @ashashash ,
Welcome to the Shopify community!
You can follow the instruction below:

.product-section .product__title {
    line-height: 32px !important;
    letter-spacing: normal !important;
}

If you feel like my answer is helpful, please mark it as a solution. Let me know if you have any further questions.
Thank you!
Raman

@ashashash ,

.product-section.spaced-section h1.product__title {
    line-height: 33px;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Thank you, that worked great, however, now the product title is smooshed up next to the vendor. How do I increase the padding between the two?

@oscprofessional are you able to help me?

@ashashash ,

p.product__text.caption-with-letter-spacing.vendor_font_size {
    padding: 0 0 12px 0;
}
1 Like

thank you thank you!