.
Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the script credit must appear in the source code of the
page(s) using the script. Please reinstate the notice first.
That said, the second issue is easier to address than the first one. Add wmode transparent as both a param for the object tag and as an attribute for the embed:
Code:
<object width="560" height="315"><param name="movie" value="http://www.youtube.com/v/3EpT1iK_XQA?fs=1&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3EpT1iK_XQA?=1&hl=en_US&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="315" wmode="transparent"></embed></object>
The first question is a little harder because I'm not sure what you want to have happen, or what is happening that you don't like. It sounds like you might want some sort of persistence from page to page. If so, you need a menu that does that. Here are a few:
http://www.dynamicdrive.com/dynamici...ordionmenu.htm
http://www.dynamicdrive.com/dynamicindex1/slashdot.htm
http://www.dynamicdrive.com/dynamicindex1/navigate1.htm
http://www.dynamicdrive.com/dynamici...view/index.htm
The other more likely possibility is that you mean that the menu doesn't work at all on the other pages. That's because the external menu script isn't on those other pages. For example, on the home page you have:
HTML Code:
<script src="includes/menu.js" type="text/javascript"></script>
<link href="includes/style.css" rel="stylesheet" type="text/css" />
While on howworks.php it's:
Code:
<script src="includes/menua.js" type="text/javascript"></script>
<link href="includes/style.css" rel="stylesheet" type="text/css" />
and there is no menua.js file. It should (as long as the on page code for the menu links is correct) work if you change that to menu.js
If it's something else, please be more specific.
Bookmarks