Remove Margin from my Shopify store (Theme Electro)

Hello,
I want to remove margin from my store.
When I size to 90% the margin will be removed.
Can anyone help me how to remove margin at 100% size.

@abdulbasitt
Put below css into themes.css file

@media (min-width: 1441px)
{
.container {
    max-width: 100% !important;
}
}

Hello @abdulbasitt

I would like to give you a solution to support you:

  1. Go to Online Store-> Theme-> Edit code
  2. Open your theme.liquid theme file
  3. Paste the below code before :
<style>
@media (min-width: 1690px){
.container {
max-width: 1600px !important;
}
}

@media (min-width: 1590px){
.container {
max-width: 1500px !important;
}
}

@media (min-width: 1390px){
.container {
max-width: 1320px !important;
}
}

</style>

Was my reply helpful? Please Like and Accept Solution. This mean alot to me.