Hi @patsorules,
Unfortunately, the Slider Above Masthead feature will not work with what you’re trying to do. That left-space area is a big part of the lawyer demo design, so we need to respect that. Here’s what you need to do to place that slider outside the scope of left-space area.
First setup a child theme, After you setup a child theme make sure you activate it (Appearance > Themes).
Then add this to your child theme’s functions.php file.
add_action('x_before_site_begin','my_custom_slider_abovemasthead');
function my_custom_slider_abovemasthead () { ?>
<div class="my-custom-slider">
<?php echo do_shortcode( '[rev_slider alias="nonprofit-home"][/rev_slider]' ); ?>
</div>
<?php }
Replace the [rev_slider alias="nonprofit-home"][/rev_slider] with your own slider shortcode.
Then add this to your Slider’s custom CSS area.
.x-root {
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
}
Hope it helps,
Cheers!