Hi Conor,
Thanks for writing around!
- To change the tab color, please add the following CSS code in the Theme Options > Global CSS or in the Customizer via Appearance > Customize > Custom > Edit GLOBAL CSS
.vc_tta-tab.vc_active a {
color: #fff !important;
}
.vc_tta-tab.vc_active {
background: #f4524d !important;
border-radius: 5px !important;
}
- To fix the mobile tabs issue, add the following script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript
jQuery( function($) {
$('.vc_tta-tab a').on('click', function( e ){
setTimeout( function() {
$('html, body').stop().stop();
}, 100 );
});
$(document).ready(function() {
$('.vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta-tab a').off('click touchstart touchend');
});
});
Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!