PenciDesign replied
Hi,
As I see on your site - you've changed the content width to 1000px by use this code:
.container {
max-width: 1000px;
}
by default it's 1170px
If you want to change the container to bigger, please remove the code above and add more this code to Customize > Custom CSS:
@media only screen and (min-width: 1170px){
.container {
width: 1250px;
}
}
Best Regards,
PenciDesign