How to add padding to the right and left of text block

Is there a way to add padding to the right and left side of the text block to make it more narrow in the Pipeline theme?

Thank you.

Link to site: https://9kmso76mstam2259-57200312371.shopifypreview.com

Hi @awirtz

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

div#shopify-section-template–15822192607283__main {

margin-left: 10% !important;

margin-right: 10% !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hello @awirtz

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

div#shopify-section-template--15822192607283__main { padding: 0 16% !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Thank you! That worked, I appreciate your help!