Remove unnecessary CSS for old browsers and IE

This commit is contained in:
Kijin Sung 2023-08-31 00:35:11 +09:00
parent 6e38b440ea
commit 3e38515c23
6 changed files with 15 additions and 85 deletions

View file

@ -540,7 +540,7 @@ class widgetController extends widget
// If the General wijetil
default :
$widget_content_header = sprintf('<div class="xe-widget-wrapper ' . ($args->css_class ?? '') . '" %sstyle="%s">', $args->id ?? '', $style);
$widget_content_body = sprintf('<div style="*zoom:1;%s">%s</div>', $inner_style,$widget_content);
$widget_content_body = sprintf('<div style="%s">%s</div>', $inner_style,$widget_content);
$widget_content_footer = '</div>';
break;
}