Results 1 to 2 of 2

Thread: IE6 and Flash Bug

  1. #1
    Join Date
    Apr 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default IE6 and Flash Bug

    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

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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 . . .
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •