Hi,
You will have to customize the module in order to achieve that, however, this task will take time and beyond our support scope.
If you are developer, you can have a look at modules/mod_japromobar/tmpl/default.php file
//push page down
<?php if($params->get('push_page_down', 1)):?>
if(getCookie('ja_promo_bar_<?php echo $module->id?>') == 'opened' || getCookie('ja_promo_bar_<?php echo $module->id?>') == ''){
jaPromoBarBody('opened');
//fix conflict with t3 menu
jaPromoBarT3Nav('opened');
}
<?php endif;?>
//check previous status bar
if(getCookie('ja_promo_bar_<?php echo $module->id?>') == 'closed'){
jaClosePromoBar();
}else{
jaOpenPromoBar();
}
Regards