Hello to all,
I believe I'm very close to acomplish this:
I have modified the CSS and the header.php to accomodate a flash header (behind the navigation) Everything works beautifully on a Mac, (Safari, Firefox) but unfortunately this doesn't work on a PC (Safari, IE 7, Firefox 3) I'm pretty sure that I'm missing a parameter (or something hopefully simple) to make it work with the PC flash player; my call for the swf on the CSS is:
===========
'
#header {
width: 980px;
height: 173px;
margin-top:-169px;
z-index:1 !important;
position: absolute;
}
#flash_header {
height:169px;
margin:0px;
padding:0px;
z-index:0 !important;
}
'
=======================
And my header.php "calling" the .swf is:
=======================
'<!-- ^^^^^^^^^^^^^^ header code ^^^^^^^^^^^^^^ -->
<div id="flash_header">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','980','height','169','src','/swf/header','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','/swf/header' ); //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="980" height="169">
<param name="movie" value="/swf/header.swf" />
<param name="quality" value="high" />
<embed src="/swf/header.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="980" height="169"></embed>
</object></noscript>
</div>
<div id="header" >
<div id="pagenav">
-
<li<?php if(!is_page() ) { ?> class="current_page_item"<?php } ?>>">Home
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
</div>
'
========================
Any ideas? The "problem" above can be seen (on a Mac) and not seen on a PC at:
Thanks in advance for your help!
~jachong