javascript - Override Inline Styles added via JS with CSS -


a js plugin adding style giving me headache:

element.style {      z-index: 100 !important; } 

so have tried this:

html body div#shell div#shellcontent div#bottompart div#rightcol div.containerbox     div#embedcontainer div#janrainengageembed div.janraincontent div#janrainview    div.janrainheader[style] {     z-index: 1 !important; } 

and still nothing.

contrary other answers, possible override inline styles css:

http://css-tricks.com/override-inline-styles-with-css/

i guess extremely long selector might not hitting element.

i had similar z-index issue janrain plugin solved this:

#janrainengageembed > div[style] {     z-index: 0; } 

in case, need:

    z-index: 0 !important; 

Comments

Popular posts from this blog

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -

php - Deleting/Renaming a locked file -