2 videos side by side above masthead

Hi,

I’m testing X on my local Wamp, and I can’t get what I want :
above masthead, I need to have 2 videos (so, half screen each), full width.
I’ve try with Revolution slider, but even if I can have the 2 videos, they are not really fullwidth. If they are, it’s only for my screen. On bigest screen I have marge (left and right).
Do you know if it’s possible ? I was wondering if I can custom template to add a row above masthead, so I could put 2 cols in there, with my 2 videos. (Your demo is not made with revolution slider, isnt’it ?).
thanks for your answer. If needed, I can use a dev server to test with your help.

Hi there,

The masthead area could only accommodate one slider but you can customize it by overriding the template file using the child theme.

Then you can use the x_before_site_begin action to add some elements above the header area in the functions.php.

add_action( 'x_before_site_begin', 'above_header' );

function above_header() {
?>
    <!-- Add you HTML here -->
<?php
}

Hope this helps you get started.

Cheers!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.