From: DizzDizzy on
I used same way u said but Some design isues are there will you please give another option
From: maylandmac on
I am selecting the menu option from the spry menu and it creates SpryMenu1. How
can I force it to change the name to another number? When I try to create the
menu in this way, it still overwrites my formatted CSS for the original menu
when I drag the new one onto a page?

Thanks for your suggestion. I'm just trying to learn why things work the way
they do.

From: maylandmac on
Glen,

I tried your option of making a copy of the Spry directory into other
directories on the site and then linking menus on those pages to these new
directories, but it just doesn't want to work right. I'm thinking I need to
re-name the menu something else to help, but again, I don't know how that can
be done within Dreamweaver before the menu is created. Can you provide any
tutorials or resources for Dreamweaver where I could read up on sprys over and
above what is in the CS3 help menus.

From: GEAtkins on
The way I did mine was:
1) copy the css file and rename it to whatever.
2) copy an existing page with an existing menu (in my case a template) and
rename it to whatever.
3) change the code in the new page to refer to the new css file.

In other words the code would be this on one page:

<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet"
type="text/css" />
<style type="text/css">

and this on another page:

<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontalTwo.css" rel="stylesheet"
type="text/css" />
<style type="text/css">

Notice the addition of "Two" (or whatever you want it to be) in the second CSS
file name. As long as the other CSS file was named, in this case,
SpryMenuBarHorizontalTwo.css and located at the path referenced, it should
style separately from the first example.

I'm not sure, but I don't think it matters if there is a "Menu1" on one page
and a "Menu1" on another page as long as each menu refers to a different and
uniquely styled CSS file.

Glenn