
-
AuthorPosts
-
February 15, 2018 at 9:32 pm #912942
Hi,
I created a photo gallery using the one included in the Enfold theme. The thumbnails load ok, but they are extremely small and greyed out. Plus, the selected preview size is 260×185, but the resulting preview photo is extremely large with no way to advance to the next photo.Thank you for your help.
February 15, 2018 at 11:24 pm #913014Hey peabody64,
Can you try and disable all other active plugins to ensure there is no or scripting conflict occurring.
Best regards,
Jordan ShannonFebruary 16, 2018 at 12:39 am #913034All plugins disabled…no difference. Still acting the same.
February 16, 2018 at 3:24 am #913058Hi,
Your image link is opening the image itself not a lightbox, please ensure the option at Enfold Theme Options > Theme Options > Lightbox Modal Window is checked.
Your images also appear to have a opacity of 0.1, please check your options and change to 1
If you still have issues please include a admin login in the private content area so we can take a closer look.Best regards,
MikeFebruary 16, 2018 at 6:57 pm #913344Thank you for your help in this matter. Checking the Lightbox Modal Window resolved the gallery preview issuse, but how does one change the image capacity? I don’t see this as an option in the theme options, the image options, or the gallery options. Also, all of the gallery thumbnail options are of a ‘landscape’ orientation. Is there css to display the gallery thumbnails in a ‘portrait’ orientation 185×260 instead of 260×185?
Again, thank you for such prompt and helpful support.
February 16, 2018 at 10:48 pm #913420Hi,
What do you mean by the “image capacity”? What are you trying to achieve?
Best regards,
Jordan ShannonFebruary 16, 2018 at 11:12 pm #913433Sorry, that was a typo…opacity as mentioned by Moderator Mike in previous post (February 16, 2018 at 3:24 am)
February 17, 2018 at 9:58 am #913595Hi peabody64,
This might not be the case with this gallery. Theme options do not have such controls. Have you tried masonry gallery?
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?Best regards,
VictoriaFebruary 17, 2018 at 4:51 pm #913675Yes, below are the login credentials.
thank you
February 17, 2018 at 6:47 pm #913697Hi,
Turns out it was the “Thumbnail fade in effect” in the gallery, it has a lazy load effect so I changed it to “Activate animation on page load (might be preferable on large galleries)” which says in it’s name that it is preferable for large galleries, such as yours.
It seems to work now, Please clear your browser cache and check.Best regards,
MikeFebruary 17, 2018 at 7:44 pm #913705It works indeed…thank you so much!!
Last item, all of the gallery thumbnail options are of a ‘landscape’ orientation. Is there css to display the gallery thumbnails in a ‘portrait’ orientation 185×260 instead of 260×185?
thanks again.
February 17, 2018 at 8:15 pm #913709Hi,
Please follow this solution: Enfold Image Sizes where you will want to change the dimensions of:$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 );
to:
$avia_config['imgSize']['portfolio_small'] = array('width'=>185, 'height'=>260 );
Then use the Regenerate Thumbnails plugin
It would be best to add this as a function in a Child Theme so you will not lose the setting when updating the theme.
After you set up the child theme, Try adding this code to the end of your child theme functions.php file in Appearance > Editor:add_action( 'after_setup_theme', 'change_portfolio_small' ); function change_portfolio_small() { add_image_size( 'portfolio_small', 185, 260 ); }
Code Source
Best regards,
MikeFebruary 17, 2018 at 11:56 pm #913730Thank you so much for all of your help. You not only have be best theme on the market, you offer the best support as well.
thanks again.
February 18, 2018 at 3:47 am #913747Hi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
Nikko -
AuthorPosts
- The topic ‘Enfold Photo Gallery Thumbnail Issues’ is closed to new replies.