Graphic Design Forum and Web Design Forum

Compare Web Hosting


Go Back   Graphic Design Forum and Web Design Forum »Web Design Forum »CSS Forum

Notices

CSS Forum Cascading Style Sheets (CSS) and XHTML Forum


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-12-2008, 07:27 PM
Web Developer
 
Join Date: Oct 2008
Location: Atlanta, GA
Gender: Male
Posts: 166
Default 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;
}
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote

  #2 (permalink)  
Old 04-12-2008, 07:34 PM
Mack's Avatar
I own the flash design thread.
 
Join Date: May 2007
Location: RI, USA
Gender: Male
Posts: 1,965
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #3 (permalink)  
Old 04-12-2008, 07:38 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Leeds, England
Gender: Male
Posts: 12,846
Default

Known issue. Give me a moment.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #4 (permalink)  
Old 04-12-2008, 07:40 PM
Web Developer
 
Join Date: Oct 2008
Location: Atlanta, GA
Gender: Male
Posts: 166
Default

<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>
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #5 (permalink)  
Old 04-12-2008, 07:41 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Leeds, England
Gender: Male
Posts: 12,846
Default

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.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #6 (permalink)  
Old 04-12-2008, 07:44 PM
Mack's Avatar
I own the flash design thread.
 
Join Date: May 2007
Location: RI, USA
Gender: Male
Posts: 1,965
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #7 (permalink)  
Old 04-12-2008, 07:44 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Leeds, England
Gender: Male
Posts: 12,846
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #8 (permalink)  
Old 04-12-2008, 07:44 PM
Web Developer
 
Join Date: Oct 2008
Location: Atlanta, GA
Gender: Male
Posts: 166
Default

The problem with that though is that W3C does not like the embed tag with the Doctype 4.01 Strict.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #9 (permalink)  
Old 04-12-2008, 07:46 PM
Web Developer
 
Join Date: Oct 2008
Location: Atlanta, GA
Gender: Male
Posts: 166
Default

Mack, just click on my signature and you will go to my site. This is where I am having the issue in IE7.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #10 (permalink)  
Old 04-12-2008, 07:49 PM
Web Developer
 
Join Date: Oct 2008
Location: Atlanta, GA
Gender: Male
Posts: 166
Default

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?
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


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



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

Create your own custom 2010 Calendars

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 | Design by Miner Skinz.com | Logo Design UK | Art Schools Online | Pressure Seal Printing | Vision.To Design

Colour Print | Graphic Design UK | Logo Design | Photography Blog | Brochure Design UK | Design Forum Links | Logo Design

Graphic Design Schools Online | Integrated Cards | Integrated Labels | Graphic Design | Logo Design | Graphic Design Social Network

Logo Design | Integrated Cards & Labels | Graphic Design Tutorials | Logo Designer | UK Logo Design Studio

Colour Printers, Web Design and Logo Design UK | Business Cards | Accident and Injury Claims Rotherham UK | Logo Design Blog

Funfair Hire, Carousel Hire, Carnival Hire in the UK | Web Designer Rotherham, Yorkshire, UK | Damp Proofing & Plastering, Dartford, Kent

Damp Proofing, Refurbishment & Plastering, London | Wedding Photography London, Wedding Photographer, Kent

Free Dating in Sheffield | Free Dating in Sheffield and Yorkshire Forum | Motorhome Rental and RV Hire Scotland | Vector Art Blog

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

All times are GMT. The time now is 09:47 PM.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Estetica Design Forum's Privacy Policy