SHOP FULL WIDTH DESKTOP AND MOBILE ?

HI! Hope someone can help me, I’m struggling to make the page full widht, I’ve tried several times on the main menú from Shopify from 1,200 px to 1500 but nothing changes, hope someone can help me to get ride of those gaps, thank you in advance. Website link

www,mexajewelry.com

Hi @MXJEWELRY

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
header.header {
    max-width: 100%;
    padding-top: 0;
}
@media screen and (min-width: 990px) {
    .header:not(.drawer-menu).page-width {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!