+ Reply to Thread
Page 1 of 4
1 2 3 ... LastLast
Results 1 to 10 of 36

Thread: Menu not hovering over flash image

  1. #1
    Web Developer
    Join Date
    Oct 2008
    Location
    Atlanta, GA
    Posts
    166

    Menu not hovering over flash image

    I have a dropdown menu that works great in Firefox, but not in IE7. The dropdown drops behind the flash image inf IE7. Any thoughts as to how to fix this?

    #nav {
    background : url(/images/navbar.png);
    width : 940px;
    height : 36px;
    position : relative;
    margin-top : 25px;
    }

    #menu li {
    position : absolute;
    width : 130px;
    height : 32px;
    top : 1px;
    list-style : none;
    z-index : 800;
    }

    #menu ul {
    margin : 0;
    padding : 0;
    list-style-type : none;
    }

    #menu ul ul {
    display : block;
    position : absolute;
    width : 135px;
    font : normal 12px verdana;
    top : 32px;
    left : -9999px;
    margin : 0;
    padding : 0;
    list-style : none;
    }
    #menu ul li:hover {
    z-index : 900;
    }
    #menu ul li:hover ul {
    visibility : visible;
    left : 0;
    z-index : 900;
    }

    #menu li li {
    position : relative;
    top : 0;
    left : 0;
    width : 135px;
    padding : 0;
    margin : 0;
    height : 27px;
    }

    #menu li li a,
    #menu li li a:hover {
    width : 190px;
    height : 15px;
    display : block;
    margin : 0;
    padding : 5px;
    border : 1px solid #b5b5b5;
    background-color : #fff6d4;
    color : #000;
    background-image : none;
    }

    #menu li li a:hover {
    background-color : #fff;
    color : #000;
    }

    li#home {
    left : 50px;
    }

    li#webservice {
    left : 217px;
    }

    li#portfolio {
    right : 463px;
    }

    li#request-quote {
    right : 415px;
    }

    li#contact {
    right : 341px;
    }

    li#login {
    right : 234px;
    }

    #menu em {
    visibility : hidden;
    }

    #menu li a {
    display : block;
    width : 130px;
    height : 32px;
    }

    li#home,
    li#home a {
    position : absolute;
    top : 2px;
    left : 30px;
    width : 55px;
    height : 25px;
    }
    li#home2,
    li#home2 a {
    position : absolute;
    top : 2px;
    right : 35px;
    width : 55px;
    height : 25px;
    }
    li#webservice,
    li#webservice a {
    width : 152px;
    }
    li#portfolio,
    li#portfolio a {
    width : 128px;
    }
    li#contact,
    li#contact a {
    width : 141px;
    }
    li#login,
    li#login a {
    width : 126px;
    }
    li#webservice a:hover {
    background : url(/images/webservice-hover.png) no-repeat;
    }
    li#portfolio a:hover {
    background : url(/images/portfolio-hover.png) no-repeat;
    }
    li#contact a:hover {
    background : url(/images/contact-hover.png) no-repeat;
    }
    li#login a:hover {
    background : url(/images/login-hover.png) no-repeat;
    }


  2. #2
    The Closer. Mack's Avatar
    Join Date
    May 2007
    Location
    RI, USA
    Posts
    2,101
    can you post the site rather then just the CSS? its difficult to help without seeing it happen and no markup.
    "If at first you don't succeed, try again. Then quit. No use being a damn fool about it."
    Mike McKenzie - Online Portfolio

  3. #3
    CSS Wizardry Harry's Avatar
    Join Date
    May 2007
    Location
    Leeds, England
    Posts
    13,881
    Known issue. Give me a moment.

  4. #4
    Web Developer
    Join Date
    Oct 2008
    Location
    Atlanta, GA
    Posts
    166
    <div id="nav">
    <div id="menu">
    <ul>
    <li id="home"><a href="/"><em>Home</em></a></li>
    <li id="webservice"><a href="custom-web-design.php"><em>Web Service</em></a>
    <ul>
    <li><a href="custom-web-design.php">custom web design</a></li>
    <li><a href="ecommerce.php">eCommerce</a></li>
    <li><a href="website-hosting.php">website hosting</a></li>
    <li><a href="http://www.goodboydomains.com">domain names</a></li>
    </ul>
    </li>
    <li id="portfolio"><a href="featured-clients.php"><em>Portfolio</em></a>
    <ul>
    <li><a href="featured-clients.php">featured clients</a></li>
    <li><a href="testimonials.php">testimonials</a></li>
    </ul>
    </li>
    <li id="contact"><a href="contact-us.php"><em>Contact Us</em></a></li>
    <li id="login"><a href="#"><em>Client Services</em></a>
    <ul>
    <li><a href="http://goodboyweb.seework.com">Client Update Request</a></li>
    <li><a href="http://webmail.goodboyweb.com">Client Webmail</a></li>
    </ul>
    </li>
    <li id="home2"><a href="/"><em>Home</em></a></li>
    </ul>
    </div>
    </div>
    <div class="phone">
    Call Us: 1.877.338.2932
    </div>
    <div class="date">
    <span id="stamp"></span>
    </div>
    <div class="main-pic">
    <object type="application/x-shockwave-flash" data="/header/goodboy-header.swf" width="930" height="131">
    <param name="quality" value="best">
    <param name="movie" value="/header/goodboy-header.swf">
    </object>
    </div>

  5. #5
    CSS Wizardry Harry's Avatar
    Join Date
    May 2007
    Location
    Leeds, England
    Posts
    13,881
    Can't find it, but I *think* you need wmode="transparent" as an attribute in the embed. I don't work with Flash at all but we had this problem at work. I'll keep looking though cos I'm 99% certain I know what you mean.

  6. #6
    The Closer. Mack's Avatar
    Join Date
    May 2007
    Location
    RI, USA
    Posts
    2,101
    ugh. is it so hard to just post a URL.
    "If at first you don't succeed, try again. Then quit. No use being a damn fool about it."
    Mike McKenzie - Online Portfolio

  7. #7
    CSS Wizardry Harry's Avatar
    Join Date
    May 2007
    Location
    Leeds, England
    Posts
    13,881
    Okay, use the method(s) of embedding here: http:// www. theovalgroup . com/

    We used to have the problem I think you're having. The menu dropdowns were always behind the Flash

  8. #8
    Web Developer
    Join Date
    Oct 2008
    Location
    Atlanta, GA
    Posts
    166
    The problem with that though is that W3C does not like the embed tag with the Doctype 4.01 Strict.

  9. #9
    Web Developer
    Join Date
    Oct 2008
    Location
    Atlanta, GA
    Posts
    166
    Mack, just click on my signature and you will go to my site. This is where I am having the issue in IE7.

  10. #10
    Web Developer
    Join Date
    Oct 2008
    Location
    Atlanta, GA
    Posts
    166
    Sorry to sound ignorant, but what portion of your file am I looking at to resolve my issue? I see where you have a class for your flash file. Is that what you are referring to?

+ Reply to Thread
Page 1 of 4
1 2 3 ... LastLast

Similar Threads

  1. Hovering image change
    By Jasper5844 in forum CSS Forum
    Replies: 2
    Last Post: 03-11-2008, 11:25 PM
  2. jQuery for Menu Background Image Animations
    By lamploi79 in forum General Web Design Forum
    Replies: 0
    Last Post: 23-09-2008, 05:43 PM
  3. Drop down menu covered by swf image
    By Ken Lui in forum Graphic Design and Web Design Help
    Replies: 9
    Last Post: 20-07-2008, 10:46 PM
  4. Cloud Menu - Free Flash XML Menu
    By Graphic Design Links in forum Graphic Design Links
    Replies: 0
    Last Post: 11-02-2008, 02:41 PM
  5. Image Menu with mootools
    By lolly in forum General Web Design Forum
    Replies: 2
    Last Post: 05-11-2007, 08:40 AM

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


The Graphics Forum Web Design Stuff Free Decent Downloads Free Quality Wallpapers Graphics Forum Free Vista Themes
The Top The Best Images Tech Talk 247 Logo Design - $149 Affordable Stock Vector Illustrations Creativecurio - Design Blog Graphic Design Advertising

Check the forum often for the latest design announcements. Everything from graphic design and web design, to films and music. Estetica is a great place for people to get together and help each other out.



Web Hosting - UK Web Hosting services for business or personal website hosting needs.

Dedicated Servers - A full range of Managed Dedicated Server solutions suitable for all your requirements.

Graphic Design Blog | Web Design Forum | Graphic Design and Print Forum | Graphic Design Links | Advertise On This Site

Web Design UK | Vision.To Design | Leaflet Printing | Estetica Design Forum's Privacy Policy

Flyer Printing | Photography Blog | Design Forum Links | Logo Design | Graphic Design Social Network | Logo Design

Graphic Design Tutorials | Logo Designer | UK Logo Design Studio | Land for sale | Vector Art Blog | Leaflet Printing

Free Web Hosting | Custom Logo Design - $149 Only | Affordable Print Design Templates | Small Business Logo Design | Company Logo Design

Logo Design Service | Logo Design Firm | Logo Design Reseller | Custom Logo Design | Letterhead Printing | Flyer Printing | Business Card Printing

Printing | Leaflet Printing | Online Backup | T-Shirt Printing | Personalised Mugs | Canvas Printing | Free Web Hosting Comparison Site