• WordPress has a rule to close custom meta box like those created by ACF:

    .js .closed .inside { display: none; }

    You’re plugin breaks this behavior by overwritting the rule with a higher specificity:

    .body--ass #postbox-container-2 .inside {
    display: inline-block;
    width: 100%;
    }

    The resulting CSS is:

    .body--ass #postbox-container-2 .inside {
    display: inline-block;
    width: 100%;
    }
    #poststuff .inside {
    margin: 6px 0 0;
    }
    .hidden,
    .js .closed .inside,
    .js .hide-if-js,
    .js .wp-core-ui .hide-if-js,
    .js.wp-core-ui .hide-if-js,
    .no-js .hide-if-no-js,
    .no-js .wp-core-ui .hide-if-no-js,
    .no-js.wp-core-ui .hide-if-no-js {
    display: none;
    }
    • This topic was modified 3 weeks, 1 day ago by mrleblanc101.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.