November 5, 2015 at 8:05 am
#39256
Theme Horse Support Team
Keymaster
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!