if i am having a following html:
<div id="myID" class="xy za">...</div>
all browsers are absolutely ignoring the following css:
#myID{style: any !important;}
because there are styles loaded for:
#myID.xy.za{ ... }
important note: .xa.za are random classes, which alternate for every single user whyle extermal widget is loading, so i can't grep them.
Any ideas?