Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #272522

    Hi, the last update changed the size of the featured image in blog postings – the height of the featured image used to be 360px, now it’s 270px.

    How can I change the featured image size back to the previous, larger height? I use a lot of type on my featured images, so I don’t want any image cutting to occur.

    thx in advance, greetings, Ritchie

    #272642

    Hi!

    Have you tried changing that in Settings > Media and then regenerating the thumbnails?

    Can you post a link to your blog page?

    Regards,
    Josue

    #272760

    Hi Josue,

    I never changed anything in my media settings… neither before installing Enfold nor after updating.

    I don’t want to use thumbnails for the big featured image; when I post a new blog entry, I always save my featured image in the size 706x360px – Enfold used to display the original images without any cropping or resizing.

    Here’s a screenshot of a blog posting with a big featured image:
    enfold1

    And here’s my media settings:
    enfold2

    I don’t understand how updating changed the featured image setting… it used to be 706px by 360px, now it’s 706px by 270px.
    The featured images are all uploaded in the correct size, but the display height is wrong.

    #272763

    I have the same problem here http://thinkbigger.pt/blog/comunicacao-na-internet-como-fidelizar-clientes-online/

    After the latest update all my featured images decreased the size.

    I need your urgent help, please.

    #272801

    Hey!

    This will fix it, add it to the Quick CSS:

    .big-preview img {
        height: 360px;
        width: auto !important;
    }

    Cheers!
    Josue

    #272807

    Hi,
    it’s better, but not 100% fixed. The image is not stretched to the width of the article block, even if I increase the height value.

    #272809

    Change the code to:

    .big-preview img {
        height: auto !important;
        width: 100% !important;
    }

    Best regards,
    Josue

    #272810

    Perfect!
    Thanks Josue

    Cheers,
    João Campos

    #272812

    You are welcome :)

    Hope this works for @datadirt too.

    Regards,
    Josue

    #272817

    Hi Josue,

    thanks for the quick reply, but unfortunately not ;-)

    I tried the first css code – it results in a larger, yet streched image:

    feat

    The second code doesn’t change the result at all:

    feat4

    #272824

    Hi,

    Can you post a link to your website please? you can put it in a private reply if you want.

    Regards,
    Josue

    #272964

    No prob – ain’t no secret :-)

    http://blog.datenschmutz.net

    #272997

    Hi,

    Open functions.php and look for line 101:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it by this:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>360);		                 // big images for blog and page entries
    

    Regards,
    Josue

    • This reply was modified 10 years, 5 months ago by Josue.
    #273281

    Hi Josue,

    thank you! I changed the image size in functions.php – yet the displayed size is still 270px ;-)

    greetings, Ritchie

    #273354

    Hey Ritchie!

    Try doing a force regeneration:
    https://wordpress.org/plugins/force-regenerate-thumbnails/

    Don’t forget to flush any caching you may have activated.

    Cheers!
    Josue

    #274431

    Thank you – that did the trick.

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Size of the featured image in blog posts’ is closed to new replies.