find the css object in style.css, it will be:
/**
* Nodes & comments
*/
.node {
border-bottom: 1px solid #ccc;
margin: 0;
padding: 1.5em 5px;
}

then replace it with
/**
* Nodes & comments
*/
.node {
border-bottom: 1px solid #ccc;
margin: 0;
padding: 1.0em 5px !important;
padding: 1.0em 0px ;
}

first padding left(second parameter in padding line) will affect ff,ie7 and second line will affect ie6. you can adjust it if still doesn't work well.

CommentFileSizeAuthor
xzyyy.patch304 bytesxzyyy