Shelley
Well-known member
Disable category description in your style properties, style is not compatible with this fonctionality
![]()
you could add the following to fix that in EXTRA.CSS
Code:
.nodeList .categoryStrip .nodeTitle { display: inline; }
.nodeList .categoryStrip .nodeDescription { display: inline; }
.nodeList .categoryStrip .nodeTitle:after { content:" - "; }

EDIT: Actually, It would probably be better to add the :before selector to .nodeDescription rather than :after to nodeTitle so it looks like this:
Code:
.nodeList .categoryStrip .nodeTitle { display: inline; }
.nodeList .categoryStrip .nodeDescription { display: inline; }
.nodeList .categoryStrip .nodeDescription:before { content:" - "; }