Popup

Hi,

I am using popup. I need to center it on the screen. I tried position:“center”. It was centered horizontally well but vertically… It’s moved to the very top and half hided. I don’t want to use coordinate parameters.

Is there any way to fix this issue?

Thanks

Most probably your page, has not any content which results in zero height, and window can’t center self correctly.

To fix the issue, add the next styling to the page

html, body { height:100% } 

It will resolve the problem