Text margin and Padding in Pages - Dawn 12.0

Cannot find the simple solution to this.. I need the custom CSS for Page template I’ve created so I can adjust the width of the text in the main text area. I would like to bring it out to meet the element. Desktop only and I only want to use it on this template Ive created. so CSS for the section editor if possible..

See URL here - https://devildaves.com/pages/hot-sauce-tasting-delaware

Hi @Ryanp

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hey thanks Richy - Hey you know what I was thnking.. Im just going to use the Rich Text sections in the page template.. Any chance you can get me a code to rich text and bring that out to meet the width in the same way?

@Ryanp if you want all other sections on that page has the same width, use this code instead of above

{% if handle contains 'hot-sauce-tasting-delaware' %}

{% endif %}

thanks. where do I put that code? Tried it above the tag and it didnt work..

Hello @Ryanp :waving_hand:

You can add this CSS code to the template

.rich-text__blocks {
    max-width: 100% !important;
}

The result

Hope that helps!

Thanks. That worked quick and easy!

You are welcome!