Hi Shopify Community,
I was wondering how to increase line spacing on the article-template debut theme. The lines seem too close together in my articles.
Hi Shopify Community,
I was wondering how to increase line spacing on the article-template debut theme. The lines seem too close together in my articles.
Hi @schoe3
you can try to add this code to bottom of the theme.css file
And you can change the number to make the spacing you want.
.template-article rte p{
line-height: 1.9;
}
Hi Michael Pink,
I added the code to my CSS file. It didn’t work for my debut theme. However, when I took the rte out, it worked.
e.g.
/* line spacing for template article */
.template-article p {
line-height: 2.2;
}
Regardless, thank you @Michael_Pink for helping me out Should I accept as solution?