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
A user seeks to remove white gaps on the sides of an “image with text” section on their Dawn theme store, wanting it to span the full page width.
Solutions Provided:
Multiple experts offered CSS-based fixes targeting the padding:
All solutions involve adding padding-left: 0 and padding-right: 0 declarations with !important flags to override existing styles. One responder noted this may slightly alter the overall page structure.
Status: Multiple working solutions provided with visual proof, awaiting user confirmation of which approach they’ll implement.
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:
@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
.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
.section-template--23910238093635__image_with_text_gnQfi4-padding.gradient.color-scheme-1 .page-width {
padding-left: 0 !important;
padding-right: 0 !important;
}
Thanks!