Сообщение от ZoNT
|
А нашёл строки с заданием координат окошка:
modalbox.style.left = Math.round(scrollWidth / 2) - 200;
modalbox.style.top = document.body.scrollTop + 250;
Тоже нет размерности...
|
Размерность задается в CSS
#modalbox {
width: 200px;
height: 150px;
position: absolute;
display: none;
z-index: 2
}