The problem stems from:
Code:
#menu {
width:800px;
height:150px;
}
In your http://caricowboy.com/css/styles.css file. This id is applied both to the script generated object tag and its container division. Use a different id for the container division and set the menu's selector (which will now apply only to the script generated object tag) to a height of 136px:
css code (additions red):
Code:
#menucon {
width:800px;
height:150px;
}
#menu {
width:800px;
height:136px;
}
HTML code (addition red):
Code:
<div id="menucon">
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} els . . .
Bookmarks