How to make 'image with text' image full width - dawn

hello, i would like to make my ‘image with text’ image full width. My store is www.antico-abito.com , theme is dawn

Try this in “Custom CSS” setting of this section:

.gradient > div {
  max-width: none;
}

Shopify currently has a bug when you can’t use page-width in “Custom CSS”, therefore the selector is funny.

Also note that Image is not really designed to grow over the default width and on really wide screen it may become fuzzy.

Also, if you want indeed want the image to be full-bleed, then the code should be:

.gradient > div {
  max-width: none;
  padding: 0;
}

.gradient > div {
max-width: none;
padding: 0;
}

this code works perfectly, however when i add it, it also make the text wider so my text is too far wide. Is there a way to make this code only work for the image?

Ah, you can try this instead:

@media (max-width:749px) {
  .image-with-text__media {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}