Category descriptions on same line

Morgain

Well-known member
How do I make the Category descriptions follow on the same line as the title link, wrapping to 2nd line if necessary?

Jake you did tell me long ago sorry lost my note on this.
 
Code:
.nodeList .categoryStrip .nodeTitle { float: left; }
.nodeList .categoryStrip .nodeDescription { float: right; }
.nodeList .categoryStrip .categoryText:after { content: ''; display: block; clear: both; }

Or

Code:
.nodeList .categoryStrip .nodeTitle, .nodeList .categoryStrip .nodeDescription { display: inline-block; }
 
Top Bottom