How can I adjust paragraph spacing on my website pages?

Hi all,

How can I adjust spacing between paragraphs? It’s fine between sections but they are a bit too wide between paragraphs and makes it hard to follow. This is happening on the following pages:

https://www.feyrebaby.com.au/pages/about-us

https://www.feyrebaby.com.au/policies/terms-of-service

1 Like

adjust line-hight, go to theme.scss.liquid search for line-height, replace1.6 to 0.2 or something.

2 Likes

hello @shells

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-page  .content-block--page  br  , .shopify-policy__body br{
     	display:none;
}
1 Like

Hi @Kinjaldavra

Thank you it works; however, all of them has shrunk. I only need the ones within the sections to be shrunk. How can I add a bit more space between the sections as indicated with the red lines below for the page? https://www.feyrebaby.com.au/pages/about-us

Thank you so much.

1 Like

@shells

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-page .container {
    max-width: 1140px !important;
}

Hope this works.

Thanks!