Admin styles effecting the rest of the admin area
-
In woosea_admin.css the CSS being set is effecting the entire dashboard not just the plugins pages.
body {
font-family: “Open Sans”, sans-serif;
line-height: 1.25;
}The above effects everything. So does this:
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
// table-layout: fixed;
}You need to wrap a container with a unique class around your content and update these.
You can see the issue by viewing any admin area with a table e.g. the posts or pages list.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Admin styles effecting the rest of the admin area’ is closed to new replies.