Flynn, Your advise on this topic seems to be right on point with what I am trying to do. However, having made the changes you suggested, checked and rechecked the accuracy of the changes, I do not get any change in the "black" typeface I would like to change to grey #666666. Please see Comments section of my page:
http://basicallybasie.com/?p=225#comments
Thank you for any additional suggestions.
wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'comment'
));
wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'pings'
));
} else {
wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'all'
));
} ?>
</ul>
<!-- / Comment List -->
<?php bfa_next_previous_comments_links('Below'); ?>
<?php else : // If there are NO comments ?>
CSS Inserts
Add CSS code here that you want to append to your theme's CSS file.
h3 {
font-size: 1.75em;
font-weight: bold;
color:#ABBB38;
}
span.replytext {
font-weight: bold;
color: #666666;
}