Plugin css conflicts with wp core styling
-
Hi,
Is it possible to create more specific css for this plugin.
The css of the plugin modifies core styling of the wordpress backend.Some cases of this:
– the class Wrap had gotten a position Absolute, which make it so our notifications (wp core) are not visible anymore.
– the show-settings-link drop downs are restyled. But these also conflict with wp core styling.Code example of our fixes to cancel out the plugin css with scss:
.ac-wp-media {
.wrap{
position: relative !important;
height: 100vh;.media-frame{
position: relative;
height: 100vh;
display: block;
top: 0;
}
}
}body.upload-php.eml-grid #wpbody-content{
float: left !important;
}Could it be possible for you to optimize your css so Core elements of wordpress won’t be effected by this.
- The topic ‘Plugin css conflicts with wp core styling’ is closed to new replies.