Hello,
I was wondering if it’s possible to have the Grid Row to be 100% height.
Thanks,
Hi Pappasdg!
Could you please provide a link for the site in question?
Best regards,
Rikard
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