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: Frontpage slidehow max width and aligned to center

#42365

Hi Heidi,

Please try below custom css code. Hope it solves your issue.

.featured-slider {
    margin: 0 auto;
    max-width: 1170px;
}
@media only screen and (max-width: 1290px) {
	.featured-slider {
		width: 964px;
	}
}
@media only screen and (max-width: 1023px) {
	.featured-slider {
		width: 708px;
	}
}
@media only screen and (max-width: 767px) {
	.featured-slider {
		width: 300px;
	}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.featured-slider {
		width: 460px;
	}
}

Thank you!