I ran into a similar issue as well, and after a lot of troubleshoot, i found out this plugin was the cause my footer was getting all messed up. Indeed it is a div not closing properly.
Until the author fix this oversight, here are the instructions to modify the plugin directly and fix this.
1- On the file wp-categories-widget.php (main file) on line 108, you will find something like this:
$va_category_HTML .='</ul>';
echo $va_category_HTML;
} //-- Closing IF
$va_category_HTML .='</div>';
Change this to:
$va_category_HTML .='</ul>';
$va_category_HTML .='</div>';
echo $va_category_HTML;
} //-- Closing IF
Basically moving the closing div to inside the div above the echo.
That will get your footer fixed.
-
This reply was modified 5 years, 11 months ago by fearlex.