Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #393204

    Hello,

    I was wondering if it’s possible to have the Grid Row to be 100% height.

    Thanks,

    #393540

    Hi Pappasdg!

    Could you please provide a link for the site in question?

    Best regards,
    Rikard

    #393741
    This reply has been marked as private.
    #394593

    Hi!

    It’s kind of bordering on custom work. I recommend just setting a minimum height in the shortcode options.

    You could try doing something like this. (add it to the bottom of functions.php)

    add_action( 'wp_footer', 'enfold_customization_grid_height' );
    function enfold_customization_grid_height() {
    ?>
    <script type = "text/javascript">
    jQuery(document).ready(function(){
    jQuery('.av-layout-grid-container .flex_cell').css({ 'height' : jQuery(window).height() + 'px' });
    });
    </script>
    <?php
    }

    But it’s probably not going to work in all browsers / devices.

    Best regards,
    Elliott

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.