How to customize Ella theme layout page width on homepage to any size. e.g 1400px

Hi @esmoent ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file → Save

@media only screen and (min-width: 768px) {
   .container-full:has(.halo-block-content) {
    padding-left: 100px !important;
    padding-right: 100px !important;
   }
}

Here is result:
Only for desktop:

Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes: :heart_eyes:

1 Like