First of all, want to say how much I appreciate the Atahualpa theme. Been using it for websites for the past year and I'm recommending it to other web developers.
We ran into a problem today when we launched a new website for our client. (www.jma-it.com)
The drop-down menus (spawned from the category menu, which we converted to a page menu) are not displaying for Internet Explorer and Chrome users who visit the home page. The drop down menus work in Firefox and they work on all sub-pages for various browsers. The problem appears to be a Flash object we have snuggled underneath the menu bar. I added a non-breaking space in the header settings to see what was going on. It moved the Flash animation down and showed that the drop-down menus look like they are behind the Flash object when viewed with IE and Chrome.
Here is the Header code:
%image <div id="menu-center">%cat-center</div>
<?php if( is_front_page() && !is_paged()) { ?>
<div id="carousel" align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="300px">
<param name="movie" value="carousel/presentation.swf?xml_path=carousel/slides.xml" />
<param name="quality" value="high" />
<param name="allowFullScreen" value="true" />
<embed src="carousel/presentation.swf?xml_path=carousel/slides.xml" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="300px" allowFullScreen="true"></embed>
</object>
</div>
<?php } ?>
Can we fix this with z-index or is there a bug here?
Thanks for any advice!
Chuck