To implement Beverleyh's suggestion, replace
Code:
<div class="glossymenu">
with
Code:
<div class="glossymenu" id="glossymenu" style="position: absolute">
then if you want to locate the rest of the page beneath the menu, put this immediately beneath the closing tag of the div where the menu is written:
Code:
<div id="beneath_glossymenu" style="width: 100%; "> </div>
<script>
document.getElementById('beneath_glossymenu').style.height=document.getElementById('glossymenu').clientHeight+document.getElementById('glossymenu').offsetTop+'px'
</script>
Bookmarks