Re: Menu (works in IE) doesn't pop up in Netscape 7.0
2005/08/01 08:48
Viewed 5890 times
Replies: 1/1

I'm testing the Menu for purchase. It initiates fine in Netscape, but doesn't actually pop up (which renders it pretty useless, since the links are hidden.)

this page works in IE but not netscape:
http://www.elzweig.com/pages.php

That's because there is a problem with your code.  The submenu's <ul> element must be nested in the parent menu item <li>, like this:

<ul id="menu">
<li>About Elzweig
<ul>
... submenu items here ...
</ul>
</li>
...
</ul>

Your code contains the submenu <ul> right after closing the parent item <li>, which is wrong.

Hope this helps.

last
Closing the context menu
2005/08/02 17:44
Viewed 3871 times
Replies: 0/0
by Greg

We are currently using your menu as a lookup. So when the user clicks in a specific input box they are given the lookup menu. It works great. But if they are just typing the value in instead of looking it up, the menu persists until they actually click outside of the menu. Is there a way to make it disapear as soon as they leave the menu or as soon as they type anything? I've looked at the electric attribute but It looks like I cannot have the menu close when I move outside of it and be shown only on a click and not a hover.

Again, hmenu is working great for us. Just wanted to see if there were some features that I was unaware of.

last
Shiow menu label bold
2005/08/02 21:31
Viewed 4241 times
Replies: 1/2

Can we show label text of only one menu item bold. if possible how?
eg:
<li id="smenu32">
m1
</li>

<li id="smenu33">
m1
</li>
<li id="smenu34">
m3
</li>

i want to show m3 as bold

last
Re: Shiow menu label bold
2005/08/03 09:19
Viewed 6237 times
Replies: 1/1

There are 2 possibilities.

  1. the easiest one, add an <a> tag:
    <li>
    <a> <b>m3</b> </a>
    </li>

    If you add an <a> tag, even if it has no href, its content will be taken “as is” and included in the menu label.

  2. add a class name and customize it through CSS:

    <li class="bold">
    m3
    </li>

    and add the following in your document <head>:

    <style type="text/css">
    .bold { font-weight: bold }
    </style>
 
last
Hang Menu to the left
2005/08/04 03:30
Viewed 4041 times
Replies: 1/1

On this site, all the menus in the menu bar (on the left side) go down and to the right. Your shopping cart one is on left side of the bar and it goes down and to the right as well, not the the left as expected. I think this is why you have the date in the right corner -- to give the menu some space to down and right underneath. Can we make the menu go to the left on the end so something like the date is not needed?

last
Re: Hang Menu to the left
2005/08/04 07:25
Viewed 5729 times
Replies: 0/0

Not at this time, but it's a feature that we plan to implement in a future version.

last
Tabbing through a menu
2005/08/09 18:32
Viewed 3871 times
Replies: 1/3

Is there a way to activate a menu with the keyboard and then use the TAB key to move through the items in the menu instead of the arrow keys? Thanks!

last
Re: Tabbing through a menu
2005/08/09 22:34
Viewed 5958 times
Replies: 1/2

No, but I don't think the TAB key would be intuitive inside a menu; in fact, I presume that any user that opens a menu using the keyboard will expect in the first place to be able to use the arrow keys (which works in the Dynarch Menu). I don't know of any menu system that uses the TAB key for navigation—am I missing something?

last
double click
2005/08/17 21:49
Viewed 3915 times
Replies: 1/2
by Greg

I've been looking through the documentation and can't find any info on this. Can the hmenu be implemented on a double click instead of a single right or left mouse click?

Thanks.

last
Re: double click
2005/08/17 21:53
Viewed 5796 times
Replies: 1/1

Not at this time, but we can code this feature if you think it's needed. ;-)

last
removing space where the icon would be
2005/08/24 18:03
Viewed 3714 times
Replies: 1/1

I am evaluating this product and have been very impressed so far.
How can i narrow the space where the icons would be?
None of my sub-menus will have an icon so i need to move the text over to the left and closer to the left margin on the menu.

Thanks in advance.

last
Re: removing space where the icon would be
2005/08/24 18:23
Viewed 5627 times
Replies: 0/0

Please see this forum post: http://www.dynarch.com/forums/603 — it describes how to remove icon space globally.

last
Menu in Firefox
2005/09/07 19:59
Viewed 3734 times
Replies: 1/3

We are planning on migrating from Sothink's menu system to this one, but for some reason it is not rendering in Firefox. The menu renders perfectly in IE, Safari, and Opera without issue though.

I am using the 2.7 version, the one we can freely download for universities. The URL is here: http://www.nydeasoftware.com/dsudev/test.html

Any advise would be greatly appreciated. Thanks again for the great product.

last
Re: Menu in Firefox
2005/09/07 20:05
Viewed 5771 times
Replies: 1/2

According to the HTML standard, the <a> tag must have an end tag.  Therefore, the following is wrong:

<a nametop id="top" />

Please try this instead:

<a name="top" id="top"></a>

I don't know why but I'm sure this is the cause. ;-)

last
Google