As a workaround: You can change the widget CSS rules to be global rules and not specific to the multicolumn category widget itself – just remove .widget_multicolumncategorywidget
from frontend.css
, then it should be displayed properly:
ul.mccw-col-first {
display:inline-block;
vertical-align:top;
padding-right:2em;
}
ul.mccw-col {
display:inline-block;
vertical-align:top;
padding-right:2em;
}
ul.mccw-col-last {
display:inline-block;
vertical-align:top;
}
.postcount {
font-style:italic;
}
Anyway – fixing the bug in the template (or the other plugins used) would be the better solution, since I can not guarantee that these CSS classes are not being used somewhere else in your template as well.