Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @fmontero,

    Not sure if you’re having the same issue as me, but this snippet of CSS got my popups to appear full screen again, rather than in the middle of the viewport.

    .popup_outer_wrap > div {
      max-height: 100% !important;
    }
    
    .popup_outer_wrap.popup_full_height {
    	transform: translate(-50%, -50%) !important;
    } 
    
    .admin-bar .popup_outer_wrap.popup_full_height {
      top: 50% !important;
    }

    Not sure if you guys were experiencing the same issue as myself, but my modal popup would not occupy 100% of the height no matter what, despite previously doing so.

    This was my hotfix:

    .popup_outer_wrap.popup_full_height {
    	transform: translate(-50%, -50%) !important;
    } 

    Hope it helps someone.

Viewing 2 replies - 1 through 2 (of 2 total)