Hi Clovisd,
Thank you for writing in!
For that purpose, please add a class of open-widgetbar to the button shortcode. i.e:
[button type="real" shape="square" size="jumbo" href="#" class="x-btn-widgetbar-alt collapsed open-widgetbar" data-toggle="collapse" data-target=".x-widgetbar"]Contact Us[/button]
After that, add the following code under Custom > JavaScript in the Customizer:
jQuery(document).ready(function($) {
var wBtn = $('.x-btn-widgetbar-alt');
var wBar = $('.x-widgetbar');
$('.open-widgetbar').click(function(e) {
e.preventDefault();
wBar.toggleClass('in');
wBar.animate({
'height': 'auto'
}, 850);
});
});
Hope this helps. 🙂
Thank you.