make image with text full width

hello, i want to make my image with text the full page width so that there are no white gaps on the sides:

my website is www.marcomontesi.com , theme is dawn

@ads18922 where is this image added? it must be having padding around, it can be removed but it will change page structure a bit

HI @ads18922

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
.image-with-text__text-item.grid__item> div.image-with-text__content {
    padding-inline: 0 !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

Hi @ads18922

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.section-template--23910238093635__image_with_text_gnQfi4-padding.gradient.color-scheme-1 .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Hello, @ads18922

  1. Go to Online Store
  2. Edit Code
  3. Find theme.css/base.css file
  4. Add the following code in the bottom
.section-template--23910238093635__image_with_text_gnQfi4-padding.gradient.color-scheme-1 .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

Thanks!