Hi All,
To always display 4 widgets in one row next to each other in the site-footer area, try adding following CSS code in the style.css file of your child theme or add it in your site using the following plugin.
http://wordpress.org/plugins/simple-custom-css
.site-footer .widget-area {
max-width: 1040px !important;
width: 100% !important;
left: 0 !important;
}
.sidebar .site-footer .widget:nth-of-type(4) {
top: 0 !important;
left: 795px !important;
}
Best Regards,
Vinod Dalvi