Statistics
Print screen without additional CSS

Structure with Classes and ID's
div.moduletable_statistics h3 dl.stats-module dt dd dt dd etc.
CSS
/* ------------------------------------------
Statistics moduleclass suffix =_statistics
--------------------------------------------- */
div.moduletable_statistics {
margin: 0 0 15px 0;
padding: 0 0 15px 0;
border-bottom: 1px #999 solid;
}
div.moduletable_statistics h3 {
display: block;
padding: 2px 5px 2px 5px;
background-color: #ff0000;
color: #fff;
}
div.moduletable_statistics dl {}
div.moduletable_statistics dl dt {
font-weight: bold;
font-style: italic;
background-color: #e5e5e5;
padding: 3px 0 3px 0;
}
div.moduletable_statistics dl dd {
font-style: normal;
padding: 0 0 4px 0;
}
Print screen after applying CSS


