-
AuthorPosts
-
August 30, 2018 at 5:30 pm #1003727
Looking to create a video gallery with 1 large video above 3 smaller thumbnails. They should play in either where top video is or the same lightbox.
September 1, 2018 at 9:51 am #1004293Hey Eric,
Probably the easiest solution would be to create a tab section (Layout Elements). Set an image for each tab (preview image/thumbnail) an add a video element (Media Elements) to each tab.
Best regards,
DudeSeptember 4, 2018 at 4:42 pm #1005679But, how will that create one large image above 3 smaller images? I essentially want the lightbox functionality with thumbnails without having to click on an image first.
September 4, 2018 at 10:03 pm #1005791Hi,
To make that would be better if you simple use columns and not any specific ALB elemnet.
Best regards,
BasilisSeptember 4, 2018 at 10:16 pm #1005798Ok. I will try that
September 4, 2018 at 10:20 pm #1005802This reply has been marked as private.September 5, 2018 at 9:45 am #1005941Hi,
Enfold does not come with such a video gallery out of the box. The website you showed us uses this plugin: https://vimeography.com/ to create the gallery.
I played around a bit and this code gave me similiar results (you can use the debug mode to add the code to your advanced layout builder – see https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode but you need to replace the images with images from your server):
[av_image src='https://mywebsite.com/image.jpg' attachment='32815' attachment_size='full' align='center' styling='' hover='' link='manually,https://vimeo.com/119811742' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jlotu786' custom_class='' admin_preview_bg=''][/av_image] [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' link='' linktarget='' link_hover='' padding='0px' border='' border_color='' radius='0px' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-1h5ukco'] [av_image src='https://mywebsite.com/image.jpg' attachment='32815' attachment_size='full' align='center' styling='' hover='' link='manually,https://vimeo.com/119811742' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jlotu786' custom_class='' admin_preview_bg=''][/av_image] [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' link='' linktarget='' link_hover='' padding='0px' border='' border_color='' radius='0px' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-13zvdns'] [av_image src='https://mywebsite.com/image.jpg' attachment='32815' attachment_size='full' align='center' styling='' hover='' link='manually,https://vimeo.com/119811742' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jlotu786' custom_class='' admin_preview_bg=''][/av_image] [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' link='' linktarget='' link_hover='' padding='0px' border='' border_color='' radius='0px' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-29iwzs'] [av_image src='https://mywebsite.com/image.jpg' attachment='32815' attachment_size='full' align='center' styling='' hover='' link='manually,https://vimeo.com/119811742' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jlotu786' custom_class='' admin_preview_bg=''][/av_image] [/av_one_third]
I simply added 4 image elements (Media elements) to the page builder and linked all of them to vimeo videos. Then I added 3 columns to the page builder and drag’n’droped 3 images into the columns. The remaining image stays at the top of the columns and is displayed as full size image.
Best regards,
DudeSeptember 5, 2018 at 5:11 pm #1006217Cool. Now how could I add a white caption, lower third, centered to all?
September 5, 2018 at 6:24 pm #1006254This reply has been marked as private.September 5, 2018 at 6:32 pm #1006260This reply has been marked as private.September 5, 2018 at 6:40 pm #1006265This reply has been marked as private.September 6, 2018 at 12:21 am #1006373This reply has been marked as private.September 6, 2018 at 9:16 am #1006511Hi,
You can use this code to remove the 6% margin:
#top #wrap_all div .av_one_third { margin-left: 1px; width: 33%; }
I’d recommend to set a custom css class ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements ) for the columns, otherwise the code will affect all columns and not only the thumbnail columns.
The code would then look like
#top #wrap_all div .av_one_third.customclass { margin-left: 1px; width: 33%; }
(of course you need to replace customclass with your css class).
You could also use this code to adjust the space between 3 images and the big image:
#top #wrap_all div .av_one_third.customclass { margin-left: 1px; width: 33%; margin-top: -10px; }
(of course you need to replace customclass with your css class). You can also replace the margin-left and width values to adjust the space between columns. The margin-top value will change the space between the big image and the columns.
If you want to make the images bigger you need to increase the size of the surrounding column – at the moment you added all images into a 1/2 column which results in 1/6 width thumbnails (1/2 * 1/3 column). You could i.e. increase the 1/2 column to full width (1/1) to make the thumbnails bigger.
Also, how could I add a white caption, lower third, centered to all?
You can’t easily add a caption inside the images but you could i.e. use a textblock elements to add some text (caption) below or above the images. The wordpress editor also enables you to center the text.
Best regards,
PeterSeptember 6, 2018 at 4:28 pm #1006711Thanks. But how do I remove the blue vertical line on left side. I know it’s border-left but can’t seem to remove it.
September 7, 2018 at 9:26 am #1006968Hi Exec4,
Best regards,
VictoriaSeptember 7, 2018 at 3:16 pm #1007137True. But I believe there are other images throughout the site that use the blue border. I was trying to affect just these images.
September 7, 2018 at 4:23 pm #1007174I implemented the global change and will see what else it affects. It works. So thank you.
So – as above, I would like to know how to use “page-id” to select only items on that page (because all I can find is the “post ID#).
And, I would like to add captions under the bottom 3 images.
September 7, 2018 at 5:17 pm #1007206Hi Exec4,
Glad you got it working for you! :)
You can try adding the text blocks below the images but it might not give you the result you need.
If you need further assistance please let us know.
Best regards,
VictoriaSeptember 7, 2018 at 6:15 pm #1007244That worked. Thanks. I’m assuming there isn’t a way to have the text appear over the images?
September 10, 2018 at 12:38 pm #1007877Hi,
if you are talking about “Dr. Joseph McKinley”,… Out of the box – no.
If you use a plain image elements you have a tab “Caption” where you can enter a text that is displayed over the image.
Best regards,
GünterSeptember 14, 2018 at 7:15 pm #1009927How can I make the thumbnail images bigger and reduce the gaps between and above them?
September 15, 2018 at 9:27 am #1010043Hi,
Please try the following in Quick CSS under Enfold->General Styling:
.page-id-1405 #av_section_1 .av_one_third { margin-left: 2%; width: 32%; }
Best regards,
RikardSeptember 17, 2018 at 3:45 pm #1010813The last thumbnail is wrapping. If I decrease the width, then the 3rd thumbnail isn’t aligned on the right.
September 17, 2018 at 3:47 pm #1010814If I make the margin-left 1% it works better, but it looks just short of aligning on the right.
September 17, 2018 at 4:59 pm #1010841Hi,
Try to replace the code from Rikkard with:
.page-id-1405 #av_section_1 section.av_textblock_section .av_one_third { width: 32%; margin-left: 0; margin-right: 0; } .page-id-1405 #av_section_1 section.av_textblock_section .av_one_third.el_after_av_one_third.el_before_av_one_third { margin-left: 2%; margin-right: 2%; }
Best regards,
GünterSeptember 17, 2018 at 5:36 pm #1010855That worked. Thanks!
September 17, 2018 at 5:51 pm #1010872 -
AuthorPosts
- The topic ‘How can I create traditional video gallery?’ is closed to new replies.