Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Selector wildcard for WordPress widget Re: CSS Selector wildcard for WordPress widget

#88135
SgtLegend
Member

I searched through your site and couldn’t find the CSS but found the jQuery and an error i made with it, see the fixed jQuery code below. If you have or are using a cache like W3 cache make sure to clear it as the changes won’t appear until then.

jQuery for IE

jQuery(function($) {
if ($.browser.msie && $.browser.version < '9.0') {
$('div[id^=events-list-widget]').each(function() {
$(this).addClass('events-widget-ie');
});
}
});