Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Bill J on Dec 04, 2008 08:32
open dhtmlx forum
dhtmlxTabbar - tabs be "taller"?

dhtmlxTabbar - can tabs be taller? Look like only 1 row of text in the tab text/title can be supported, our of box. Ideally, I'd like the tabs to grow taller dynamically, based on the text in the tab. But, if there's a way to hard-code to get 2 rows of text, that would be better than nothing.
Answer posted by Support on Dec 04, 2008 09:22
There is no way to change height of tabs dynamically, but you can define initial heigh through parameters of constructor

var tabbar = new dhtmlXTabBar(some,"top",35); //<=height of row

Also you will need to add next style to the page, to allow text wrapping inside tabs
.dhx_tab_element{
    whitespace:normal !important;
}