How can I set height of a toolbar?

How can I set height of a toolbar? It is possible?

Hi
From 3.5 version you can set size of icons and it will change the toolbar height.
dhtmlx.com/docs/products/dht … _size.html

Common you can change toolbar hright in the next CSS:
.dhx_toolbar_base_18_dhx_skyblue {
height: 27px; //27 is ny default
}
But note that you can’t do this with “skyblue” skin. If you need it exactly for this skin - you have to hide the image and set bg color:
.dhx_toolbar_base_18_dhx_skyblue, .dhx_toolbar_base_24_dhx_skyblue, .dhx_toolbar_base_32_dhx_skyblue, .dhx_toolbar_base_48_dhx_skyblue {
background-image: none !important;
background-color: #D3E2E5;
}