Is it possible to display my whole website in full width using the pipeline theme?

Hello,

I am using the pipeline theme.

Is it possible to make my whole website display full width?

Thanks

@sumnb0011 - please add this css to the very end of theme.css file and check

.wrapper, .wrapper .grandparent .header__dropdown__wrapper {
    max-width: 100%;}

@sumnb0011 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.wrapper{
    max-width: calc(100% - 2px) !important;
    padding: 0 !important;
}

@media (max-width: 749px){
    .wrapper{
    max-width: calc(100%) !important;
    padding: 0 !important;
}
}

If you want it only on mobile, you can use this code instead:

@media (max-width: 749px){
    .wrapper{
    max-width: calc(100%) !important;
    padding: 0 !important;
}
}

Kind regards,
Diego