Trying to add left padding to a rich text section on my Highlight theme.
I added this CSS to the id section:
padding-left: 50%;
Whilst it gives the section padding, it only moves it over, making the whole site width longer.
Not sure what additional CSS I need to add in, or if I should be using columns instead?
First image for context on how the CSS makes the site width larger, second image is how it should look.
Pls help!
Site URl: https://soundlab-melbourne.myshopify.com/admin/themes/131822256370/editor?previewPath=%2Fpages%2Fspecialised-lessons
Hello @Hannaht2 site is password protected
@kazi_1 Password is: thesoundlabmelbourne
Thank you!!
Which section do you mean?
@kazi_1
The rich text section, image for context below
which page is that? can u send the link?
Add this css on assets > theme.css bottom of file
#shopify-section-template–15985039868146__164863221804800728 .rich-text-blocks {
padding-left: 30%;
}
@kazi_1
Thank you so much!!!
How do I remove the padding for mobile?
Then use this css instead the previous one
@media (min-width:768px) {
#shopify-section-template–15985039868146__164863221804800728 .rich-text-blocks {
padding-left: 30%;
}
}
1 Like