Viewing 27 posts - 1 through 27 (of 27 total)
  • Author
    Posts
  • #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.

    #1004293

    Hey 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,
    Dude

    #1005679

    But, 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.

    #1005791

    Hi,

    To make that would be better if you simple use columns and not any specific ALB elemnet.

    Best regards,
    Basilis

    #1005798

    Ok. I will try that

    #1005802
    This reply has been marked as private.
    #1005941

    Hi,

    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,
    Dude

    #1006217

    Cool. Now how could I add a white caption, lower third, centered to all?

    #1006254
    This reply has been marked as private.
    #1006260
    This reply has been marked as private.
    #1006265
    This reply has been marked as private.
    #1006373
    This reply has been marked as private.
    #1006511

    Hi,

    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,
    Peter

    #1006711

    Thanks. 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.

    #1006968

    Hi Exec4,

    Best regards,
    Victoria

    #1007137

    True. But I believe there are other images throughout the site that use the blue border. I was trying to affect just these images.

    #1007174

    I 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.

    #1007206

    Hi 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,
    Victoria

    #1007244

    That worked. Thanks. I’m assuming there isn’t a way to have the text appear over the images?

    #1007877

    Hi,

    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ünter

    #1009927

    How can I make the thumbnail images bigger and reduce the gaps between and above them?

    #1010043

    Hi,

    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,
    Rikard

    #1010813

    The last thumbnail is wrapping. If I decrease the width, then the 3rd thumbnail isn’t aligned on the right.

    #1010814

    If I make the margin-left 1% it works better, but it looks just short of aligning on the right.

    #1010841

    Hi,

    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ünter

    #1010855

    That worked. Thanks!

    #1010872

    Hi,

    Glad we could help you.

    Enjoy the theme and feel free to come back when you need further assistance – just open a new topic.

    Have a nice day.

    Best regards,
    Günter

Viewing 27 posts - 1 through 27 (of 27 total)
  • The topic ‘How can I create traditional video gallery?’ is closed to new replies.