@matelo
This is due to how the theme is applying styles to widgets. For some reason it is making all unordered lists in widgets as inline-blocks, globally. To correct, add the following to the theme’s custom CSS area:
.ez-toc-widget-container ul {
display: block;
}
The theme also adds a significant padding to list items to widgets globally. To correct, add the following to the theme’s custom CSS area:
.ez-toc-widget-container li {
border: none;
padding: 0;
}
And one last tweak to correct the padding around the widget. The theme is applying a large padding around divs in widgets, globally. To correct, add the following to the theme’s custom CSS area:
div.ez-toc-widget-container {
padding: 0;
}
I’ll see if these can be added to ezTOC.