Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1400379

    Hi,
    I am trying to replace the images in the theme but I noticed that you do not have different sizes for different pages in the media gallery but use the same image with different sizes and aspect ratios depending on the page.
    When I change an image, or edit a page and use the same image from the image gallery, it is the wrong size, even when the same image was ok just before editing. How do I get to have the images the right size and aspect ratio for each page as is the case in the demo?
    Thank you,
    Barnett

    #1400421

    Hey barnettmsiska,

    Thank you for the inquiry.

    Are you using the Image element in the Advance Layout Builder? You should be able to select or adjust the image size in the Image element editor (Styling > Size > Image Size).

    To adjust the size of the featured images, you have to adjust the size of the entry_with_sidebar or entry_without_sidebar thumbnails manually using this code in the functions.php file.

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    
    function enfold_customization_modify_thumb_size( $size ) {
        $size['entry_with_sidebar'] = array('width'=>845, 'height'=>446);
        $size['entry_without_sidebar'] = array('width'=>1210, 'height'=>423);
        return $size;
    }
    

    Best regards,
    Ismael

    #1400425

    Hi,
    Yes, I am using the Image element in the Advance Layout Builder, but I cannot get the same image sizes and aspect ratios as in the demo.

    For example, I am trying to change the image on the top left in this screenshot: https://prnt.sc/DdSvTCzLGLJb

    Here I have selected the same image. I have tried all the options for ATTACHMENT DISPLAY SETTINGS, but none of them display the image like in the demo after selecting and saving: https://prnt.sc/nz0G8FBMkzKr

    This is how the image looks after choosing: https://prnt.sc/oOI4NeRvklN0

    I would like to have it long and short like in the demo.

    Thanks

    #1400611

    Hi,
    It has been almost 2 days, is anyone attending to my request?
    Thanks

    #1400836

    Hi,
    Sorry for our delayed response, and thank you for your patience the image you should choose is the Entry with Sidebar – 845 × 321
    Enfold_Support_589.jpeg
    This is the original demo size:
    Enfold_Support_591.jpeg

    Best regards,
    Mike

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.