I’ve discovered a couple of invalid CSS attributes in both the JS file for dhtmlxWindows and the CSS file for dhtmlLayout.
dhtmlxwindows.js
Line 58
“
width=100% and height=100%
should be
width:100% ,height:100%
dhtmlxlayout_dhx_blue.css
Line 28: height=33px;
Line 167: height=18px;
Line 214: height=100%;
Line 215: width=18px;
Line 372: height=25;
The first one here actually causes a problem when corrected (the bottom of the layout border disappears) and should be corrected to height:30px;
Just an FYI