Search code examples
layoutborderdhtmlx

delete empty space borders in dhtmlxLayout web skin


How to delete empty space borders from dhtmlxLayout web skin, to make it similar to skyblue skin?

document.getElementsByClassName(" dhxtabbar_base_dhx_web")[0].style.margin = 0;

doesn’t work


Solution

  • You need

    .dhxlayout_base_dhx_web div.dhx_cell_layout div.dhx_cell_cont_layout {
    padding: 0;
    }