CSS conflict in the backend
-
Hello
in the file seo-by-rank-math/assets/admin/css/post-list.css
you have the following CSS:
.wp-list-table th>span:nth-child(2) {
display: none;
}You have a rule applied on a selector that is not provided by your plugin but by the core.
This means that it’s applied also on table headers added by other plugins or themes.In my specific case, I don’t see the mobile icon added by Specific Content For Mobile in the list of pages in the backend, but I suppose the same cause of my issue gives conflicts with many other plugins.
I suggest you find another solution for your plugin, as for example:
.wp-list-table #rank_math_seo_details th>span:nth-child(2) {
display: none;
}(supposing you wanted to target the table header inside #rank_math_seo_details)
- The topic ‘CSS conflict in the backend’ is closed to new replies.