DHTML in shared border

S

sfg

Website = http://www.FirstSchoolDayton.com

Note that the navigational bar along the top uses Dynamic HTML and slightly
changes the font when the mouse slides over each item. This bar is inside a
shared border and appears on each page. Everything works fine on the home
page. When I go to the inside pages - the DHTML does not work. Everything
was designed within FRONTPAGE without the use of any add-ins. I am not an
expert - so if anyone cna help I would appreciate it.

Thanks
 
S

Stefan B Rusynko

Shared borders only imbed the content Inside of the BODY tags onto the pages that use them
- so any DHTML scripts need to be on all pages or inside of the BODY tags
- that includes adding any BODY load commands to all pages (in your case onload="dynAnimation()")

On all pages copy into the HEAD section in Html/Code view

<script language="JavaScript" fptype="dynamicanimation">
<!--
function dynAnimation() {}
function clickSwapImg() {}
//-->
</script>
<script language="JavaScript1.2" fptype="dynamicanimation" src="../animate.js">
</script>
The path to animate.js needs to be adjusted for each folder level
- the above path means 1 folder level up from the current page

Also in the BODY tag of each page add onload="dynAnimation()"

--




| Website = http://www.FirstSchoolDayton.com
|
| Note that the navigational bar along the top uses Dynamic HTML and slightly
| changes the font when the mouse slides over each item. This bar is inside a
| shared border and appears on each page. Everything works fine on the home
| page. When I go to the inside pages - the DHTML does not work. Everything
| was designed within FRONTPAGE without the use of any add-ins. I am not an
| expert - so if anyone cna help I would appreciate it.
|
| Thanks
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top