Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Tejas Shah on Sep 05, 2008 09:02
open dhtmlx forum
DHTMLX Tabbar : Hiding horizontal Scroll Bar

Hi,
I want to hide the horizontal Scroll Bar while showing tabbar.
How to do this ?
Answer posted by Support on Sep 08, 2008 03:32
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
}