Flash Divs overlap problem

This is a discussion on "Flash Divs overlap problem" within the Web Page Design section. This forum, and the thread "Flash Divs overlap problem are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 30th, 2008, 15:13
New Member
Join Date: Mar 2008
Location: London, UK
Age: 25
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Flash Divs overlap problem

I´ve inserted a Flash image gallery on a div (#imagegallery), and the others divs are supposed to overlap part of it using z-index. In Mac (Safari3, Firefox3 and Opera9.2) everything works fine but in Windows (Firefox2 and IE7) the Flash div overlaps all others, disregarding z-index. Weirdly, if I remove the Flash Gallery everything works as it should. Any ideas? I´ve removed all the content and set bright colours to the backgrounds as a way to see things clearly in order to fix the problem in case you were wondering. Thanks.

Code: Select all
Head
<style type="text/css">

#content {
    width: 900px;
    height: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    background-color: #33FF33;
    z-index: 1;
    overflow: hidden;    
        }        
        
#top {
    position: relative;
    width: 900px;
    height: 140px;
    margin: 0 auto;
    text-align: left;
    background-color: #FF0000;
    z-index: 2;
        }

#leftmenu {
    width: 200px;
    height: 200px;
    text-align: left;
    position: absolute;
    float:left;
    background-color: #FFFF00;
    top: 120px;
    z-index: 3;
        
}        
#imagegallery {
    width: 800px;
    height: 600px;
    float: right;
    position: relative;
    background-color: #0000FF;
    top: -50px;
    left:30px;
    z-index: 1;
}

</style>


Body

<body>

<div id="content">
<div id="top"></div>
  <div id="imagegallery">
    <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','20','height','30','src','viewer','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','viewer' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="20" height="30">
      <param name="movie" value="viewer.swf" />
      <param name="quality" value="high" />
      <embed src="viewer.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="20" height="30"></embed>
    </object>
  </noscript></div>
  <div id="leftmenu">Content for  id "leftmenu" Goes Here</div>
  
</div>

</body>
</html>

Last edited by saltedm8; Mar 30th, 2008 at 15:49. Reason: added [code] blocks
Reply With Quote

  #2 (permalink)  
Old Apr 4th, 2008, 20:20
Junior Member
Join Date: Feb 2008
Location: Michigan
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Flash Divs overlap problem

Sounds like it may be an issue with Flash's "wmode" setting - check out this page: http://kb.adobe.com/selfservice/view...4201&sliceId=2
Reply With Quote
Reply

Thread Tools

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
floating divs problem in IE r0ck80y Web Page Design 4 May 19th, 2008 14:43
div in table row overlap jlbantang Web Page Design 7 Oct 12th, 2007 22:11
Problem with Firefox divs... WillRevera Web Page Design 3 Aug 31st, 2007 16:29
Problem with css content box made from divs and background images weasel Web Page Design 3 Aug 9th, 2007 22:48
Please help - position problem with nested divs DavidinLondon Web Page Design 1 May 21st, 2006 15:10


All times are GMT. The time now is 03:13.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43