your admin CSS is affecting all installed plugins
-
Are you aware that the generic selectors like
.form-table th
in theadmin.css
that your plugin injects will affect the formatting of all other installed plugins using those common admin selectors?It would be better if you could wrap your admin page in a div with a unique class or id and then re-write your admin css so it targets just the stuff inside your div.
e.g.
html:<div id="easy-facebook-like">bla bla bla</div>
css:#easy-facebook-like .form-table th {}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘your admin CSS is affecting all installed plugins’ is closed to new replies.