OH! I Meant to report this! I tossed the Customizr 3.1.6 code into NetBeans IDE and it identified some coding errors in RTL folder files. Maybe the issue? Hmm… just CSS parsing errors I think so maybe not, but issues nonetheless: (Sorry, I just noticed that they aren’t all in RTL folder)
customize-controls-rtl.css: Line 222: border-radius: !important 0;
(unexpected ‘0’?)
ie-rtl.css: Line 216: unexpected right-brace
(must be one somewhere missing or extra!)
ie.css: ibid (‘ibid’ roughly means same as above, Latin)
wp-admin-rtl: Line 11269: transition: background: 0.2s ease-in-out;
(unexpected ‘background:’)
wp-admin: ibid
wp-content/themes/customizr/inc/css/rtl/[all-colors].css: Line 2773: border-color: rgba(0, 0.15) 0, 0,;
(looks like a cut-n-paste issue; probably should be: border-color: rgba(0, 0.15, 0, 0);
wp-content/themes/customizr/inc/js/fancybox/jquery.fancybox-1.3.4.css:
Line 338: height: expression(this.parentNode.clientHeight + "px");
(unexpected DOT after ‘this’ and RPAREN)
and Line 343: top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px' );
(unexpected COLON after ‘top’ and unexpected characters {?} at 343:64 & 343:189)
wp-includes/js/thickbox/thickbox.css:
Line 54: height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
(unexpected COLON and character {?} at 54:80)
and Line 75: margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
(Unexpected MINUS and WS and RPAREN)
and Line 149: margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
(ibid)
and Line 168: height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
(Unexpected COLON and character {?} at 168:80)