Viewing 2 reply threads
You must be logged in to reply to this topic.
Hi
I can’t find this anywhere – what’s the optimum size for a medium sized blog feature image on the Tower Construction theme.
I know it is 820 pixels across but what is the max height?
I have tried a few things but it doesn’t seem to quite fit.
Is it in fact a larger image that sizes down??
Thanks
Rob
Hello,
The blog post image sizes are set in file functions.php. Find these lines:
function codeless_images_sizes(){ add_image_size( 'port3', 600, 600, true ); add_image_size( 'port3_2', 550, 265, true ); --- / / --- add_image_size( 'blog', 625, 340, true );
This line: add_image_size( 'blog', 625, 340, true );
set’s up the blog post featured image sizes. Edit this to the dimensions you want. Save file and upload again the images.
You can further edit it by adding this cod einto you custom css box:
.blog-article.standard-style .media > *:not(.post_type) {
width: 100%;
}
and edit the value to you need.
The size we have chosen as best, is 820x340px, but you can set it to what best fits your needs.
Best regards!
You must be logged in to reply to this topic.