How I got the Flash Menu to work:
This may not work for you, my apologies if it does not. I am no expert I just kept pluggin
away and finally I did manage to make it work doing this and good luck to those of you who try.
1. I uploaded the the .swf file in the blog folder
*2. I opened the WP editor and opened the stylesheet CSS Highlighted all of it
and copied it then pasted it to a word doc Note pad is fine.
3. opened the Header.PHP and did the same.
In case it went bad I just pasted it back to the CSS and header no harm no foul.
I made these changes:
STYLE SHEET: CSS
added all green text
removed all red text
change blue to your size and .swf file name
#page {
background-color: #E5FA9B;
text-align: left;
}
#header {
background: #FFF url(http://www.firefly-glass.com/blog/blogtitle.swf') no-repeat bottom center;
width:750px;
}
#headerimg {
height: 251px;
padding-top:75px;
width: 750px;
}
/*----NAVIGATION BAR----*/
#top-menu{
clear: both;
margin:0px 0px 0px 0px;
width:760px;
line-height:30px;
padding-top:10px;
text-align: center;
border-top: none;
border-bottom: none;
background: #C6E589 url('images/top-menu-bg.gif') repeat-x;
font-weight:bold;
}
#top-menu a{
text-decoration: none;
color: #B39179;
padding-left:20px;
}
Header PHP
added all green text
removed all red text
change blue to your size and .swf file name
<?php } ?>
</style>
<?php wp_head(); ?>
</head>
<body>
<div id="page">
</script>
<div id="header"><embed width="760" height="251" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.firefly-glass.com/blog/blogtitle.swf" play="true" loop="true" menu="true"'allowscriptaccess','always', 'allowfullscreen','false',
></center>
<div id="headerimg"><h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1><div class="description"><?php bloginfo('description'); ?></div></div></div>
<div id="top-menu">
<ul>
<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_pages('depth=1&title_li='); ?>
</ul>
</div>
<div style="clear:both; "></div>