There is a possibility to make changes in the look and feel of a tabbar.
For this you need to take the following steps:
<style>
.my_first_class {
/*some styles*/
}
.my_second_class {
/*some styles*/
}
</style>
var tabbar = new dhx.Tabbar({
css:"my_first_class my_second_class"
});
Related sample: Tabbar. Custom Css
Back to top