Primepress Theme Nested comments

This week I noticed a problem with my wife’s blog regarding the use of nested comments. As of wordpress 2.7 comments have been treated differently and themes now need to support nested comments. My wife uses nested comments and the primepress theme.  Using a how-to article I copied the code to the custom.css file (Appearance>Editor) and then modified a few things to fit with the primepress theme.  I hope this works for anyone lese with the primepress theme:

ol.commentlist { list-style:none; margin:0; padding:0; }  
ol.commentlist li { border:1px solid #d5d5d5; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; margin:0 0 10px; padding:5px 7px 5px 64px; position:relative; }  
ol.commentlist li.pingback comment-author { padding:0 170px 0 0; }  
ol.commentlist li div.vcard cite.fn { font-style:normal; }  
ol.commentlist li div.vcard cite.fn a.url { color:#cc0000; text-decoration:none; }  
ol.commentlist li div.vcard cite.fn a.url:hover { color:#000; }  
ol.commentlist li div.vcard img.avatar { background: #fff; border:1px solid #aaa; padding: 5px; left:-55px; position:absolute; top:7px; }  
ol.commentlist li div.comment-meta { font-weight:bold; font-size: 10px; line-height: 16px; font-family: helvetica,arial,sans-serif; position:absolute; right:40px; text-align:right; top:5px; }  
ol.commentlist li div.comment-meta a { color:#205B87; text-decoration:none; }  
ol.commentlist li p { font-weight:normal;  margin:5px 0 12px; }  
ol.commentlist li ul { font-weight:normal;  list-style:square; margin:0 0 12px; padding:0; }  
ol.commentlist li div.reply { background:#999; border:1px solid #666; border-radius:2px; -moz-border-radius:2px; -webkit-border-radius:2px; color:#fff; padding:6px 5px 4px;  text-align:center; width:36px; }  
ol.commentlist li div.reply:hover { background:#cc0000; border:1px solid #cc0000; }  
ol.commentlist li div.reply a { color:#fff; text-decoration:none; text-transform:uppercase; }  
ol.commentlist li ul.children { list-style:none; margin:12px 0 0; text-indent:0; }  
ol.commentlist li ul.children li.depth-2 { margin:0 0 3px; }  
ol.commentlist li ul.children li.depth-3 { margin:0 0 3px; }  
ol.commentlist li ul.children li.depth-4 { margin:0 0 3px; }  
ol.commentlist li ul.children li.depth-5 { margin:0 0 3px; }  
ol.commentlist ul.children li.odd { background:#fff; }  
ol.commentlist ul.children li.even { background:#f6f6f6; }  
ol.commentlist li.pingback div.vcard { padding:0 170px 0 0; }


About Austin