• Resolved wp_hela

    (@wp_hela)


    The popup window to add sites goes behind header#branding in the WordPress Twenty Eleven Theme.

    Cause in style.css:

    #branding {
    border-top: 2px solid #bbb;
    padding-bottom: 10px;
    position: relative;
    z-index: 9999;
    }

    Would be nice to set the Updraft

    .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    }

    to a higher z-index in modal.scss.

    https://wordpress.org/plugins/updraftcentral/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author David Anderson

    (@davidanderson)

    Hi,

    to a higher z-index in modal.scss.

    This isn’t from UC directly – it’s from Bootstrap, which UC uses. Nowadays, as far as I understand it, the major UI libraries – jQuery, Bootstrap – have a consensus on z-index values, to allow every possible page element that you might bring in to place nicely together. However, I’d guess that TwentyEleven predates that, and isn’t likely to be fixed to join in.

    David

    Thread Starter wp_hela

    (@wp_hela)

    David,

    well, as long as anybody is aware of this issue, it isn’t really a big problem as you can fix it easily in your child theme’s style.css 😉

    Heinz

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add Site popup window behind Twenty Eleven header’ is closed to new replies.