Hi, how can I adjust padding in rich text block to less than 100%? I had a play in section-rich-text.css but didn’t have any effect. I’d kind of like it to be the same width as the contact form fields so everything is in unison.
https://boops.co.uk/pages/about-us
Thanks, Kristian
1 Like
Hi @Boops_1
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (min-width: 749px){
.section-template--23569028809047__rich_text_7PQCf8-padding .rich-text__wrapper {
padding: 0 9rem;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!