Пипец, никогда больше ifolder пользоваться не буду. Вот html код, изображения можно вставить любые. Главное - надо достичь того, чтобы 1. меню было по центру страницы 2. при сворачивании страницы оно сдвигаясь не налезало на изображение, а останавливалось рядом с ним <html lang="en"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style> html, body {padding: 0px; margin: 0px;height: 100%;background-color: #ffffff;} /* Меню */div.menu {width: 100%;height: 30px;padding: 15px 0px 15px 0px;border-style: none;display: block; position: absolute; text-align: center;} div.menu a {padding: 0px 10px 0px 10px;color: #000000;font-family: Calibri;font-size: 24px;font-weight: 400;text-decoration: none;} div.menu a.selected {text-decoration: underline;} div.menu a.disabled {color: #d0d0d0;} /* Границы страницы */img.corner_lt {width: 200px; border: 0px; display: block; position: absolute; left: 10px; top: 10px;z-index: 1000;} img.corner_rb {width: 200px; border: 0px; display: block; position: absolute; right: 10px; bottom: 10px;z-index: 1000;} </style> </head> <body> <img class = "corner_lt" src = "img/lt.png"><img class = "corner_rb" src = "img/rb.png"> <div class = "menu"><a href = "who.html" class = "selected">КТО</a><a href = "when.html">КОГДА</a><a href = "where.html">ГДЕ</a><a href = "wishlist.html">ВИШЛИСТ</a></div> </body> </html>