• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

**PLEASE LOCK**

huanaku

Golden Member
** Got an answer in OT, please lock, thanks **

I am javascripting pop-up menus on my website and having a simple (I hope) problem: My menus pop up and function correctly. I have a site root directory, and then a family directory where I store my brothers and sisters individual pages, set up like this:

menu1[1]='<a href=family\curt\index.htm>Curt</a><br>'
menu1[2]='<a href=family\miriam\index.htm>Miriam</a><br>'
menu1[3]='<a href=family\marykay\index.htm>MaryKay</a><br>'

What I am trying to do is figure out how to go down a directory. Say I have the following directories:

<root>
<root>/family
<root>/java

when on a family page, i want to have a menu that will go to the java page. EX:

current page == <root>/family/curt/index.hm
I want to link to <root>/java/index.htm

How do I set up a menu to do that? I've tried

<a href=java\index.htm>Java</a>
<a href=\\java/index.htm>Java</a>
<a href = \\\java/index.hm>Java</a>

and none of them work. Anyone have any ideas???
 
Back
Top