Hi @restyumali-sl,
To make the site in boxed layout then please go to the Appearance > Customizer > Additional CSS and paste below custom css code:
.site {
width: 100%;
max-width: 1140px;
margin-left: auto;
margin-right: auto;
background-color: #f4f4f4;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
.site {
max-width: 960px;
}
}
@media (max-width: 991px) {
.site {
max-width: 720px;
}
}