• Hello

    thank. you for this amazing plugin.

    I’ve seen in your CSS included in /wp-content/plugins/oliver-pos/public/resource/css/style-connect.css you assign the property flex to #wp-body-content

    At line 1181 version 2.3.9.5 you have:

    div#wpbody-content{
    display: flex;
    flex-direction: column-reverse;
    }

    This breaks the layout of many plugins and themes backend pages.

    You could easily solve it replacing it with:

    .toplevel_page_oliver-pos #wpbody-content{
    display: flex;
    flex-direction: column-reverse;
    }

    so it’s applied only in the backend page of your plugin.

    Or do whatever you think it’s better for your plugin, but please don’t change the display property of #wpbody-content in every backend page. This is an ID given by the core, not by your plugin.

  • The topic ‘Backend CSS brakes the layout’ is closed to new replies.