badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Not Full Width

#66147

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;
	}	
}