Remove margin from image container (Ella Theme)

I’m trying to make it so my image looks like this

But as of now I can’t get it to be that wide, It’s on full width.

https://kosterstaphorst.nl

https://koster-sandbox-1.myshopify.com/

Hey @AndreNL

Your website is password protected, can you share your store password as well?

Best Regards,

Moeed

Hi @AndreNL

Please share the password of :

https://koster-sandbox-1.myshopify.com/

The password is pifroh

The password is pifroh

Hey @AndreNL

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @AndreNL
Go to online store ---------> themes --------------> actions ------> edit code-------> base.css
and add this code at the very end of the file.

.body-boxed .wrapper-body {
    background-color: var(--bg-white);
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
}

and the result will be

let me know if this helped you.
Thanks