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 can I remove the padding on the sides of an image with text block and a row block

How can I remove the padding on the sides of an image with text block and a row block

KopeStudio
Shopify Partner
10 0 2

Hello, I'm trying to remove the padding on some of the sections and have the images fill the sides 

Screenshot 2024-07-04 at 2.27.34 PM.png

So far the only code thats worked is  

 

 

 

.page-width {
  padding-right: 0rem;
  padding-left: 0rem;
}

 

 

 

 

but that also pushes the text to the very edge 

 

I'd love some help on this

thank you

Replies 6 (6)

Moeed
Shopify Partner
7764 2082 2567

Hey @KopeStudio 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


KopeStudio
Shopify Partner
10 0 2

Hello & thank you

 

The store URL is 

https://eurodiwan.myshopify.com/?_ab=0&_fd=0&_sc=1

Password: diwan123

vm-web
Shopify Partner
157 10 29

@KopeStudio 

Please share your store URL so I can help you!

Thanks!

If helpful, please like and accept the Solution. | Email: vickyzilpe@gmail.com | - Need a Shopify Specialist? Chat on WhatsApp
KopeStudio
Shopify Partner
10 0 2

Hello & thank you

The store URL is 

https://eurodiwan.myshopify.com/?_ab=0&_fd=0&_sc=1

Password: diwan123

vm-web
Shopify Partner
157 10 29

@KopeStudio 

Please add the following Css code to your assets/base.css bottom of the file .

@media screen and (min-width: 750px){
#shopify-section-template--17134159003815__image_with_text_VfYQTm .page-width {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 0rem;
}
}

Thanks!

If helpful, please like and accept the Solution. | Email: vickyzilpe@gmail.com | - Need a Shopify Specialist? Chat on WhatsApp
KopeStudio
Shopify Partner
10 0 2

Amazing thank you so much this worked, is there a way to do it for the multi-row blocks without having the test be all the way to the edge?