• i’m trying to get the statusbar (.mce-statusbar, .mce-path) to display when the editor is in ‘full height’ mode

    i did this before with some css in editor-style.css, however an update to WP or this plugin broke it at some point

    i’ve tried the following without joy…

    div.mce-statusbar {
        visibility: visible !important;
        display: block !important;
    }
    
    .mce-statusbar > .mce-container-body .mce-path {
        flex: unset !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .mce-statusbar {
        visibility: visible !important;
    }
    
    .mce-statusbar > .mce-container-body {
        display: block;
        visibility: visible !important;
    }
  • The topic ‘always display statusbar / path’ is closed to new replies.