Log in

View Full Version : IE6 and Flash Bug



scouture
04-19-2008, 12:55 AM
if you look here http://caricowboy.com/index2.html in FF everything is fine but I'm running into problems with IE6. I'm not too good as debugging for IE6. there is a margin on top and on the bottom of the flash menu. Can anyone help me fix this?

Thanks
seb

jscheuer1
04-20-2008, 06:41 AM
The problem stems from:


#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):


#menucon {
width:800px;
height:150px;
}
#menu {
width:800px;
height:136px;
}

HTML code (addition red):


<div id="menucon">
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} els . . .