I try to change css attribute with Jquery. I do
wrapperInner.css('overflow', 'visible');
but value still stay the same. I do alert alert(wrapperInner.css('overflow')) and it shows hidden.
Here is css for this
.tribe-events-calendar td div.wrapper div.wrapper_inner {
position:relative;
overflow:hidden!important;
}
The
!importantis overriding the jQuery. Remove it.Using
!importantis sloppy and generally a bad idea—you are seeing how it causes problems.If you can’t remove it, add a class with the styles you need:
I used colors, but the concept applies. Demo