-
AuthorPosts
-
March 7, 2023 at 6:30 pm #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,
BarnettMarch 8, 2023 at 3:47 am #1400421Hey 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,
IsmaelMarch 8, 2023 at 4:13 am #1400425Hi,
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
March 10, 2023 at 2:39 am #1400611Hi,
It has been almost 2 days, is anyone attending to my request?
ThanksMarch 11, 2023 at 3:17 pm #1400836 -
AuthorPosts
- You must be logged in to reply to this topic.