You need to remove the following lines with a child theme:
content.php:
<div class="list-card-date"><?php the_time( get_option('date_format') ); ?></div>
single.php:
<span class="entry-author"><?php esc_html_e('by','incolor'); ?> <?php the_author_posts_link(); ?></span>
<span class="entry-date"><?php the_time( get_option('date_format') ); ?></span>
Should fix it.
Thread Starter
AR
(@sohel9875)
how i can stop image croping?
Thread Starter
AR
(@sohel9875)
featured image are croping, i want to stop it
You can change featured image sizes in functions.php on line 74-75:
add_image_size( 'incolor-small', 200, 200, true );
add_image_size( 'incolor-medium', 520, 292, true );
add_image_size( 'incolor-large', 740, 416, true );
More about this: https://developer.wordpress.org/reference/functions/add_image_size/