I am wanting to add padding to this rich text section on my site. It is unbalanced & I am wanting to centre the text in this section therefore add padding to the bottom of the rich text section.
Thanks
I am wanting to add padding to this rich text section on my site. It is unbalanced & I am wanting to centre the text in this section therefore add padding to the bottom of the rich text section.
Thanks
Hi @web-designer1 ,
In your admin store. Go to themes. Click Actions > Edit code. A code editor should open and look for Assets folder, and open the base.css file. Paste the code below
@media only screen and (min-width: 750px) {
#shopify-section-1641964678c8ac255a {
padding-bottom: 115px !important;
}
}
Thankyou this worked!