web style accordion

Which style classes are involved in the header height and distance of the accordion in web style? I want to get the items closer to eachother like in the classic style as well as get the header bars of less height.

I also have the question if it is possible to get a layout cell to which an accordion is attached scrolling when there are to many accordion cells in the metioned layout cell? Now they just disapear behind the bottom border of my layout.

You may do the following redefine cell_space parameter of the dhx_web skin:

dhxAccord = new dhtmlXAccordion(“accordObj”);
dhxAccord.skinParams[“dhx_web”][“cell_space”] = 0;
dhxAccord.setSkin(“dhx_web”);

and set following css:

div.dhx_acc_base_dhx_web div.dhx_acc_item div.dhxcont_global_content_area.dhxcont_acc_dhx_web { border:0px; } div.dhx_acc_base_dhx_web div.dhx_acc_item { background-image:none; border-bottom:1px solid white; }

Hi Alexandra,

Works fine, thanks!