Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #468182

    Hi, how can I increase the size of the Thumbnails that show up when I use the Latest Post Entry Widget. They are currently around 35px square but are too small on screen to see what the image is.

    #468538

    Hey Denis!

    Thank you for using Enfold.

    You can follow the first solution provided here: https://kriesi.at/support/topic/estilos-en-widget-de-ultimas-noticias-de-enfold/#post-460685

    Best regards,
    Ismael

    #478219

    Hi Ismael, I followed the instructions in the link you provided.
    Added the CSS to the child theme which made the thumbnail holder bigger.
    I then added the Simple Image Sizes Plugin.
    I changed the “widget size” to 63px but it did not change the image size in the image holder.
    Website admin link in Private content.

    #479116

    Hi!

    Please add following code to Functions.php file of your child theme

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
            $size['widget'] 		 	= array('width'=>63, 'height'=>63 );		
    	return $size;	
    }
    

    and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Yigit

    #479140

    Hi Yigit.

    did what you said, still not working so I must have missed a step somewhere.

    Goal – Am trying to make the news posts thumbnails (featured images) bigger in the footer as they are too small for visitors to be able to see what the images are.

    I have followed the following steps as instructed:

    Added this css to my child theme

    .news-thumb {
    height: 63px;
    width: 63px;
    }

    Added plugin https://wordpress.org/plugins/simple-image-sizes/

    In its settings I changed “widget size” to 63 x 63

    Added this php to my child themes functionss.php file

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘widget’] = array(‘width’=>63, ‘height’=>63 );
    return $size;
    }

    Added another plugin

    https://wordpress.org/plugins/regenerate-thumbnails/

    Went to the Media page, changed display to list, selected the first featured image for the most recent Blog Post.
    Image is called Horizons-Kids-Summer-Camp-Dublin-2015
    There are now two “Regenerate Thumbnails” options appearing, I clicked on the first one and did that, no change, I clicked on the second one, did that, no change.

    Have I made some error? Are both plugins trying to do the same job?
    Admin login in private content.

    #479208

    Hi!

    Have you flushed cache and refreshed your page a few times after applying the changes?

    Cheers!
    Yigit

    #479223

    Hi, yes I have and cleared Browser cache etc.

    #480314

    Hey!

    Please add following code to Quick CSS

    .news-thumb img, .news-thumb img {
        width: 100%;
        height: 100%;
    }

    Thumbnail sizes have changed already – http://i.imgur.com/W6Z14ZF.png

    Cheers!
    Yigit

    #480350

    Hi Yigit, at last that’s fixed it. Thanks. You may close this thread.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Change Widget Blog Thumbnail Size’ is closed to new replies.