Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How to reduce the side padding of the rich text. I don't want the side padding to be that much. I want it to look a little more spread out. I'm using dawn theme. Thank You! link to my shop: https://6fa09b.myshopify.com
Solved! Go to the solution
This is an accepted solution.
You can add code by following these steps to increase the width of richtext section
1. Go to Online Store -> Theme -> Edit code.
2. Open your base.css theme file
3. Paste the below code before </head>
.rich-text__blocks {
max-width: 100% !important;
}
This is an accepted solution.
You can add code by following these steps to increase the width of richtext section
1. Go to Online Store -> Theme -> Edit code.
2. Open your base.css theme file
3. Paste the below code before </head>
.rich-text__blocks {
max-width: 100% !important;
}
thank you!!!
Do you know how to do this on Mobile only?
On which page this section?
Hi @chocolatte1234,
Glad to support you today.
You can check out my suggestion below to get your concern resolved.
1. Go to Edit code on Online Store:
2. add my code above the </body> tag on Theme.liquid:
<style>
.rich-text__blocks {
max-width: 100% !important;
}
</style>
I hope you find the answer helpful.
Kind & Best regards,
GemPages Support Team.