I installed the Fog theme to my wordpress blog and I like it a lot but the Comments portion seems to have a bug. When a comment is posted there is a huge 3oneseven logo that gets displayed between the original post and the comment. I found this code block in the comments area that if commented out removes the image:
<?php
if ( !empty( $comment->comment_author_email ) ) {
$md5 = md5( $comment->comment_author_email );
$default = urlencode( 'http://3oneseven.com/wp-content/uploads/2007/11/15.gif' );
echo "<img style='float:left;margin-right:10px;' src='http://www.gravatar.com/avatar.php?gravatar_id=$md5&size=25&default=$default' alt='' />";
}
?>
the gif set in $default is 980x751 and completely overwhelms the page. I'm not sure what the goal was with this image but it didn't go over too well.