Hi Vic,
Regarding the link. I just had a look, and it seems that the link now works. I'm guessing you figured that one out, Right?
Regarding the organization of your new site, it's hard to know where to begin. I understand why you're developing the revised site the way you are. The only problem is that everything branches off of your "Revised Church Website" folder. I assume that at some point, when you're done revising, you'll want to move everything up one level, so that it all branches off of your domain's root.
It would probably be best if you could run a web server on your local machine, and use that to develop your site. Then you'd completely remove the old site and publish the new to the "real" location when you're ready.
Barring that, I suppose you could specify a "base location" in your menu_data.js file, in a js variable, and include that base location in all of the menu items' url settings. The base location would be the location of your index.htm file. In other words, the current base location for your new site is
http://www.http://fbclongwood.org/Revised Church Website/. You could put the following the very top of your menu_data.js page:
Code: Select all
var baseLocation = "http://www.http://fbclongwood.org/Revised Church Website/";
Then, to use that in a menu item's url, you'd do this:
Code: Select all
aI("text=Coed 65+ II (Agape Lighthouse)____________Rm. 105;url="+baseLocation+"ss_dept/adults/coed65+11.htm;");
(all on one line; no wrapping)
The url of that menu item would end up being
Code: Select all
http://www.http://fbclongwood.org/Revised Church Website/ss_dept/adults/coed65+11.htm
Then, when your new site is ready, and you move everything up, your new base location -- the location of your index.htm file -- would be in
http://www.http://fbclongwood.org/. All you'd have to do is change the
baseLocation variable at the top of menu_data.js to be
Code: Select all
var baseLocation = "http://www.http://fbclongwood.org/";
and all of the menu item urls would automatically reflect the change, with no further editing, so that
Code: Select all
aI("text=Coed 65+ II (Agape Lighthouse)____________Rm. 105;url="+baseLocation+"ss_dept/adults/coed65+11.htm;");
(all on one line; no wrapping)
would now point to
Code: Select all
http://www.http://fbclongwood.org/ss_dept/adults/coed65+11.htm
This approach would solve another problem I think you're setting yourself up for. I'm assuming that, at some point, you'll want to include the menu on all of the site's pages... right? The problem right now is that the urls in your menu items are relative (relative to the currently displayed file's location). For example, the link you mentioned earlier is currently coded as:
Code: Select all
aI("text=Coed 65+ II (Agape Lighthouse)____________Rm. 105;url=ss_dept/adults/coed65+11.htm;");
That'll work fine from your index.htm file, in the
http://www.http://fbclongwood.org/Revised Church Website/ folder, because the ss_dept folder branches off of the Revised Church Website folder. But once you're looking at the coed65+II.htm page, suppose you want to go to the coed65+I.htm page? Your current menu item for that page links to
Code: Select all
aI("text=Coed 65+ I (Sonshine)____________________Rm. 119;url=ss_dept/adults/coed65+I.htm;");
The way you have the path, the web server will look for ss_dept/adults/coed65+I.htm starting from
where it currently is. It'd end up looking for
http://www.http://fbclongwood.org/Revised Church Website/ss_dept/adults/ss_dept/adults/coed65+I.htm
which of course would not exist.
I hope that made sense... just trying to warn you of a problem to avoid down the road. I think that, given your current situation, it might be best to use the
baseLocation approach described above.
A lot to take in, I know. We're here to help if needed.
Cheers,
Kevin