Hello there,
> 1
Try doing the below steps to manage the main header height with custom jQuery code.
1. Install and activate the TC Custom JavaScript plugin
2. Go To Appearance > Custom JavaScript
3. Paste the following code into the provided box
(function($){
if ( matchMedia( 'only screen and (min-width: 1025px)' ).matches ) {
var headImg = $('.wp-custom-header img');
var imgURL = headImg.attr('src');
if( headImg.length ) {
$('.wp-custom-header').css({
'max-height': '260px', // Custom height
'background-size': 'cover',
'background-repeat': 'no-repeat',
'background-position': 'center center',
'background-image': 'url('+imgURL+')',
'overflow': 'hidden',
});
}
headImg.css('opacity', 0);
}
})(jQuery);
4. Update
> 2
Not really sure if it would be easy to accomplish — even with a plugin. Ideally, you should register new sidebar area with register_sidebar() function. To display it in the footer, you’d need to edit the footer.php in a child theme, and use dynamic_sidebar() function. Put the dynamic_sidebar() function right after <?php do_action( 'ignis_footer' ); ?>
line. Or you could use ignis_footer hook through child theme’s functions.
Regards,
Kharis