The url I load into the dhx-web styled window has a shaded background. A white border is shown around it. How do I remove the margin/padding that results in that white border for the dhx-web style?
Apply rhe next css rule:
.dhtmlx_skin_dhx_web div.dhtmlx_window_active div.dhtmlx_wins_body_outer {
border: 1px solid #646464;
}
I said “border” to describe the appearance of the window. What I want to set is the margin for the inner element of the window or the padding for the window.
There is no margin.
Try the next:
.dhtmlx_skin_dhx_web div.dhtmlx_window_active div.dhtmlx_wins_body_outer {
border: none;
}
It will increase window area by 1 px along the edges.
Ahh…
Window builds a 9px border. Apply this CSS rule:
.dhtmlx_skin_dhx_web div.dhtmlx_window_active div.dhtmlx_wins_body_outer div.dhtmlx_wins_body_inner {
border: 0px !important;
}