Tabbar set tab label width and Height when align=left

Hi, Trying to create a tab panel with a left alignment, and all is well, except that I can’t set the label width. Been through the documentation and forum, but either I’m not using the right search arguments or I missed something. What is the syntax?

Thanks

Hi,

label width is set in the 3rd parameter of the addTab method.

tabbar.addTab(“a1”,“Tab 1-1”,“100px”);

Tabs height can be changed in the 3rd parameter of dhtmlXTabBar constructor:

tabbar=new dhtmlXTabBar(“a_tabbar”,“top”,35);

Tabs height can not be changed in tabbar skin is “dhx_skyblue”.

when it is aligned left the 3rd parameter is the height, but how do you change the width on left alignment?

If tab header is at the left edge, the 3rd parameter of dhtmlXTabBar defines width and height is defined in the addTab method (please have a look at my previous answer).