Thanks Saurabh,
the code you kindly write me apparently doesn’t work, maybe I have made some mistake? I have writtend it in the style.css of the child theme, after this:
/*
Theme Name: Radcliffe Child
Text Domain: readcliffe-child
Theme URI: https://example.com/
Description: Tema Child per il tema Radcliffe
Author: fra
Author URI: https://example.com/about/
Template: radcliffe-child
Version: 0.1.0
*/
/** Logo Size **/
.header {
border-bottom: 1px solid #ddd;
}
.blog-logo img {
height: 120px;
position: relative;
z-index: 9;
}
/** Category Page Title **/
body.category .page-title h4 {
color: #e65f34;
}
About comments, what I have to delete of these below?
<?php if ( post_password_required() )
return;
?>
<?php if ( have_comments() ) : ?>
<div class=”comments section bg-grey”>
<div class=”comments-inner section-inner thin”>
<div class=”comments-title-container”>
<h2 class=”comments-title fleft”>
<?php
$comment_count = count( $wp_query->comments_by_type[‘comment’] );
printf( _n( ‘%s Comment’, ‘%s Comments’, $comment_count, ‘radcliffe’ ), $comment_count ); ?>
</h2>
<h4 class=”add-comment-title fright”><?php _e( ‘Add yours’, ‘radcliffe’ ); ?> →</h4>
<div class=”clear”></div>
</div><!– .comments-title-container –>
<div class=”clear”></div>
<?php wp_list_comments( array( ‘type’ => ‘comment’, ‘callback’ => ‘radcliffe_comment’ ) ); ?>
<?php if ( ! empty( $comments_by_type[‘pings’] ) ) : ?>
<div class=”pingbacks”>
<div class=”pingbacks-inner”>
<h3 class=”pingbacks-title”>
<?php
$pingback_count = count( $wp_query->comments_by_type[‘pings’] );
printf( _n( ‘%s Pingback’, ‘%s Pingbacks’, $pingback_count, ‘radcliffe’ ), $pingback_count ); ?>
</h3>
<?php wp_list_comments( array( ‘type’ => ‘pings’, ‘callback’ => ‘radcliffe_comment’ ) ); ?>
</div>
</div>
<?php endif; ?>
<?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : ?>
<div class=”comments-nav-below” role=”navigation”>
<div class=”fleft”>
<?php previous_comments_link( ‘« ‘ . __( ‘Older Comments’, ‘radcliffe’ ) ); ?>
</div>
<div class=”fright”>
<?php next_comments_link( __( ‘Newer Comments’, ‘radcliffe’ ) . ‘ »’ ); ?>
</div>
<div class=”clear”></div>
</div><!– .comment-nav-below –>
<?php endif; ?>
</div><!– .comments-inner –>
</div><!– .comments –>
<?php endif; ?>
<?php if ( ! comments_open() && ! is_page() ) : ?>
<p class=”nocomments section bg-grey”><?php _e( ‘Comments are closed.’, ‘radcliffe’ ); ?></p>
<?php elseif ( comments_open() ) : ?>
<div class=”respond section bg-grey”>
<div class=”section-inner thin”>
<?php comment_form( ); ?>
</div>
</div>
<?php endif; ?>