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: Tabulator for text on business home page

#39256

Hi Thomas,

To have the text widget as the width of service widget Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

.business-layout .widget_text {
    margin: 0 auto;
    max-width: 978px;
    padding: 60px 0;
}
@media only screen and (max-width: 1078px) {
	.business-layout .widget_text {
   		width: 708px;
   		padding: 30px 0;
	}
	.narrow-layout .widget_text {
 		width: 668px;
	}
}
@media only screen and (max-width: 767px) {
	.business-layout .widget_text{
		width: 300px;
	}
	.narrow-layout .widget_text {
		width: 280px;
	}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.business-layout .widget_text {
		width: 460px;
	}
	.narrow-layout .widget_text {
		width: 440px;
	}
}

And for the background image we have set it to covered the full screen size with background centered and it’s not an issue.

Thank you!