Using WP3.8, Twentyeleven with a Child Theme here.
The plugin is outputting this CSS into the source code:
<style type="text/css">
.wp-pagenavi{
margin-left:auto !important;
margin-right:auto; !important //error is here
}
</style>
Should be:
<style type="text/css">
.wp-pagenavi{
margin-left:auto !important;
margin-right:auto !important; //error is here
}
</style>
I am getting CSS errors after and warnings.
Please correct.