Quote:
How can I change the color of “Leave a Reply” above the comments box,
#comments > h4, #respond > h3, h3.author-post-list {
color: #123456;
}
Quote:
Also how do I change the wording above the comments box from “Leave a Reply” to “Leave a Comment”?
This custom function goes in your child theme functions.php file. If it is blank, start with <?php
and close the code with ?>
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Leave a Reply' => 'Leave a Comment',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );
Quote:
Is there a way to make the comments box smaller?
#commentform textarea {
width: 500px;
}