List One Category
Print screen without additional CSS

Structure with classes and id's
div.category-list h1 h2 span.subheading-category> div.category-desc p div.clr div.cat-items p div.cat-children h3 ul li.first span.item-title a div.category-desc p dl dt dd li span.item-title a div.category-desc p dl dt dd li.last span.item-title a div.category-desc p dl dt dd
CSS
/* --------------------
List single category
----------------------- */
div.category-list h1 {
margin: 0 0 10px 0;
}
div.category-list div.cat-children h3 {
margin: 10px 0 5px 0;
}
div.category-list div.cat-children ul {
list-style: none;
padding: 0;
margin: 0;
}
div.category-list div.cat-children ul li {
padding: 3px 0 6px 0;
}
div.category-list div.cat-children ul li div.category-desc p {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: 11px;
color: #666;
padding: 3px 0 2px 0;
}
div.category-list div.cat-children ul li span.item-title a {
font-weight: bold;
}
div.category-list div.cat-children ul li dl dt {
float: left;
margin: 0 10px 0 0;
}
Print screen after applying CSS


