Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #85941

    Dear Support,

    I am trying to determine how to have the featured image for each blog post display in full and not show as cut off on the blog page of my site where excerpts of blog posts are listed.

    I have tried changing the thumbnail size under Settings – Media and trying re-sizing the images, but nothing has resolved the issue.

    I would appreciate your providing the steps to help resolve this issue.

    Regards,
    Kelly Johnson

    #85976
    Mahesh
    Keymaster

    Hi @kjcornerstoneva,

    For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    function manage_image_size() {
        remove_image_size( 'gridalicious-featured-content' );
        add_image_size( 'gridalicious-featured-content', 400, 225, false );
    }
    add_action( 'init', 'manage_image_size' );

    Then use Regenerate Thumbnails plugin once to generate thubmnails. You can visit this link for the plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Featured Image is showing cut off for each excerpt post on blog page’ is closed to new replies.