Replies: 0
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.