Hi,
tabs are generated via javascript, so try this solution:
Add following Javascript code to your template
function footbar(){
if(jQuery('#jsn-profile-tabs').length == 0) return;
if(jQuery('#jsn-profile-tabs-foot').length) jQuery('#jsn-profile-tabs-foot').remove();
var a = jQuery('#jsn-profile-tabs').clone();
a.first().attr('id','jsn-profile-tabs-foot');
a.appendTo('#jsn-form');
jQuery('#jsn-profile-tabs-foot a').click(function(){
var index = jQuery(this).closest('li').attr('data-index');
jQuery('#jsn-profile-tabs li[data-index="'+index+'"] a').click();
});
}
jQuery(document).ready(function(){
if(jQuery('#member-profile').length) setInterval(function(){ footbar() }, 1000);
});
Add following CSS code to your template:
#jsn-form.z-tabs > ul#jsn-profile-tabs-foot li > a{font-size:14px;}
#jsn-form.z-tabs > ul#jsn-profile-tabs-foot li > a span{display:block;font-size:12px;font-weight:normal;}