DHTMLX Tabbar : Hiding horizontal Scroll Bar

Hi,

I want to hide the horizontal Scroll Bar while showing tabbar.

How to do this ?

If scrollbar caused by some HTML inside the content - it must be disabled by content modification.
If scroll caused by tabbar’s container - you can change dhtmlxtabbar.css in next way
.dhx_tabcontent_zone{
position:relative;
background-color:#F0F8FF;
overflow-y:auto; overflow-x:hidden;
}
.dhx_tabcontent_sub_zone{
width:100%;
height:100%;
overflow-y:auto; overflow-x:hidden;
padding: 0px 0px 0px 0px !important
}