symbols and templates
Ahh - yes. Silly me. I see that you really specified that in your original
post.
The nav bar function that you have used is right long in the tooth. If it
were me, I'd rip it out and just use simple image swaps in DW. Then, to
make the selected button stay down you could use this method in your
template page -
Put this in script tags in the editable region called "head" in the template
do***ent, and in each child page -
function P7_downImage() {
var g7="<imagename>"
var g7url="<pathname>"
if ((g7=MM_findObj(g7))!=null) {g7.src=g7url;}
}
and put this in the Template's <body> tag
onLoad="P7_downImage()", e.g.,
<body .... onLoad="P7_downImage()">
Then on each child page you would need to make two edits:
Set g7 to the *name* of the button (not the file name but the HTML name -
e.g., "productsbutt"), and g7url to the pathname to the button (e.g.,
"images/nav/button3.gif"), and bada bing, bada boom!
There is an excellent tutorial here -
http://www.projectseven.com/support/answers.asp?id=126
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
|