Yo, Madoctopus
I have a question regarding optimizing blogpost comments. On my site there are so many comments that it's really affecting my html/text ratio. I'm currently <30% text. Every time someone comments it leaves more code than text so it's diluting content even though it's really adding it for the visitor. Is there a way to hide all of this?
Also, the theme is designed to give H tags to stupid things. I'm thinking that I should change the class to a specific style and have those in like an emboldened text size 4 or something. Will this change the weight of optimization?
Here's the first part of the comments, notice H2:
<div id="comments-wrapper">
<div id="comments">
<h2 class="alt">Discussion · <strong>33 Comments</strong></h2>
<small>There are 33 responses to "My Post Name".</small>
<div class="comment-navigation clearfix">
<div class="left action"></div>
<div class="right action"></div>
</div>
Now, here is what shows up for EVERY comment. Notice H4
<ol class="commentlist">
<li class="comment even thread-even depth-1 comments-li" id="li-comment-165">
<div id="comment-165" class="comment-container">
<img alt='' src='http://0.gravatar.com/avatar/aa67fdbed46bf2a88359b3e81f416f45?s=40&d=%3Cpath_to_url%3E&r=G' class='avatar avatar-40 photo' height='40' width='40' />
<div class="comment-body-container border_bottom">
<div class="comment-meta clearfix">
<h4 class="comment-author"><a href='http://Website(optional)' rel='external nofollow' class='url'>allie</a> says:</h4> <span class="comment-date">July 6, 2012 at 8:19 pm</span>
</div>
<div class="comment-body clearfix">
<p>Here is the text of the comment.</p>
</div>
<a class='comment-reply-link' href='/mypostname/stuff.blah' onclick='return addComment.moveForm("comment-165", "165", "respond", "80")'>Reply</a>
</div>
</div>
Thanks if you can help..