Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthoroli99via
    • CommentTimeFeb 25th 2008
     
    Does anyone know why my Flash is sitting on "top" of the drop down menu? I noticed it only appears in Firefox.

    http://www.chefsfirst.com/product_images/ebrs_redesign/index2.html

    Thanks.
    • CommentAuthorphilip
    • CommentTimeFeb 25th 2008
     
    your menu has a z-index of 1010. add a lower z-index to your flashcontent css, and add wmode to your SWFObject code.


    #flashcontent {
    margin-left: 25px;
    z-index: 1;
    }



    <!-- flash header -->
    <div id="flashcontent"></div>
    <script type="text/javascript">
    var so = new SWFObject("SWF/home.swf", "flashnav", "655", "155", "9", "#FFFFFF");
    so.addParam("image", "images/oak_showroom.jpg");
    so.addParam("wmode", "opaque");
    so.write("flashcontent");
    </script>
    <!-- /flash header -->


    see this for more info:
    http://pipwerks.com/lab/swfobject/#zindex

    - philip
    • CommentAuthoroli99via
    • CommentTimeFeb 25th 2008
     
    Thank you Philip for your helpful link! This is very informational. May you keep up the good work.