Admin Interface bad display in Netscape 7 on Mac - possible fix

Talk about writing modules and plugins for CMS Made Simple, or about specific core functionality. This board is for PHP programmers that are contributing to CMSMS not for site developers
Post Reply
pkpk

Admin Interface bad display in Netscape 7 on Mac - possible fix

Post by pkpk »

I found that the Admin logon page and interior admin pages did not display properly in Netscape 7.2 on Mac. I edited the admin style sheet (style.css)

div.lbcontainer = remove overflow:hidden

div.itemoverflow = changed to

.itemoverflow:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */

The login page still does not display correctly but at least not the login boxes show. Previously all was hidden.

If I get it working right I will post the fix.

pkpk
Post Reply

Return to “Developers Discussion”