Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1418887

    The Featured images of blog post on my website are getting cropped. I want them to be visible as in whole without getting cropped and the text below them . Attaching the link of the page below –

    #1418964

    Hi sarthakchoudhary,

    The image sizes used is 705 x 705px, so unless it’s a square image, some parts of the image would be lost, otherwise, the layout will break.
    You can change the size by adding this PHP snippet in your child theme’s functions.php file (or use plugin like WPCode to add PHP snippet):

    function enfold_customization_modify_thumb_size( $size ) {
      $size['masonry'] = array( 'width' => 705, 'height' => 705 , 'crop' => false );
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    Just adjust the values as you see fit.
    Hope it helps.

    Best regards,
    Nikko

    #1419125

    I tried this by changing the values but there was no change. I also changes the dimension of my images to 705 x 705 but still they were getting cut

    #1419220

    Hi sarthakchoudhary,

    You will need to regenerate the images or re-upload it so the filter will run.

    Best regards,
    Nikko

    #1419337

    Yes I regenerated the images and re uploaded them.But still there is no change

    #1419365

    Hi,
    Right now your image looks like this:
    Enfold_Support_3304.jpeg
    if you try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .av-masonry-image-container {
    	background-position: unset;
        background-size: contain;
        background-repeat: no-repeat;
    }

    it should look like this:
    Enfold_Support_3306.jpeg
    but you will need to make sure all of your images are square, unlike this one:
    Enfold_Support_3308.jpeg

    Best regards,
    Mike

    #1420358

    Thank you so much mike for helping out

    #1420361

    Hi!

    Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Featured Image Of Blog Post Getting Cropped’ is closed to new replies.