Hi Nienke,
We have designed our Business template to have our own widget so your text widget is not displaying correctly.
Anyways to reduce the width of text widget in business template 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_black_studio_tinymce {
margin: 0 auto;
padding: 50px 0 30px;
width: 990px;
}
@media only screen and (max-width: 1078px) {
.business-layout .widget_black_studio_tinymce {
width: 708px;
}
.narrow-layout .widget_black_studio_tinymce {
width: 668px;
}
}
@media only screen and (max-width: 767px) {
.business-layout .widget_black_studio_tinymce {
width: 300px;
}
.narrow-layout .widget_black_studio_tinymce {
width: 280px;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.business-layout .widget_black_studio_tinymce {
width: 460px;
}
.narrow-layout .widget_black_studio_tinymce {
width: 440px;
}
}
@media only screen and (max-width: 319px) {
.business-layout .widget_black_studio_tinymce,
.narrow-layout .widget_black_studio_tinymce {
width: 95%;
}
}
Thank you for using our theme.