Viewing 2 reply threads
You must be logged in to reply to this topic.
I have added a featured image to my blog posts. One one of them, when I view the post by itself, the image is cut off on the top and bottom. When I view the blog post on the main blog page it is fine. How do I fix this?
Hello,
You must upload an image with the same aspect ratio as the blog post thumbnail.
You can change the post thumbnails size at functions.php file:
add_image_size( 'blog', 825, 340, true ); add_image_size( 'alternate_blog', 440, 195, true ); add_image_size( 'alternate_blog_side', 355, 235, true ); add_image_size( 'blog_grid', 350, 350, true );
Then, recreate the thumbnails.
Best regards!
You must be logged in to reply to this topic.