• At line 1156:
    I = m.getStyle("padding-left").toInt() + g.getStyle("margin-left").toInt() + g.getStyle("padding-left").toInt();
    g.getStyle("margin-left").toInt() and g.getStyle("padding-left").toInt() get NaN with empty value in Internet Explorer 11

    My fix:
    I = m.getStyle("padding-left").toInt() + g.getStyle("margin-left").toInt() || 0 + g.getStyle("padding-left").toInt() || 0;

    https://wordpress.org/plugins/easy-media-gallery/

  • The topic ‘CSS Issue for div#mbCenter in IE’ is closed to new replies.