The library items are not visible in the content area when using Internet Explorer
This is an intermittent issue that appears in IE 9
The modification needs to be made to the following file:
workarea/csslib/ektron.workarea.css
Please locate the following code in the CSS file:
/* Grids
----------------------------------*/
.ektronGrid {
border-spacing:0;
border-collapse:collapse;
width:100%;
background-color:White;
display:none;
/*border: 1px solid #d4d4d4;*/}
Modify the code as follows:
/* Grids
----------------------------------*/
.ektronGrid {
border-spacing:0;
border-collapse:collapse;
width:100%;
background-color:White;
display:none;
*display:block; /* IE7 */
/*border: 1px solid #d4d4d4;*/}
Please sign in to leave a comment.