PenciDesign Supporter replied
Hi,
Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:
.container {
width: 1200px;
}
@media only screen and (max-width: 1170px) {
.container {
width: 960px;
}
}
@media only screen and (max-width: 960px) {
.container {
width: 800px;
}
}
@media only screen and (max-width: 767px) {
.container {
width: 100%;
}
}
Regards,
PenciDesign.