Source: https://www.elegantthemes.com/forum/viewtopic.php?f=187&t=693644&p=3814609#p3814609
If you add multiple widgets into the footer and the first widget is very small, then the second widget floats next to the first one rather than below it.
Add this CSS to fix this (the default is float:left):
/* -- START Fix floating widgets in the footer -- */
.footer-widget .fwidget {
float: none;
}
/* -- END Fix floating widgets in the footer -- */Code language: CSS (css)
