Search found 1759 matches

by kevin3442
Fri Oct 06, 2006 11:02 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Collapse menu and every item having a clickimage
Replies: 10
Views: 8613

OK... I dig. I should have figured that out. What threw me is the CSS mind set for vertical centering is "middle." I believe you can combine options in the imageposition, like imageposition="middle right", although I haven't messed around with that for quite awhile. Cheers, Kevin
by kevin3442
Fri Oct 06, 2006 9:30 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Top position of sub-menus, stop alignment with menu items
Replies: 13
Views: 10898

Hi, Sorry for taking so long to get back to this... I... um... sort of forgot :oops: Just had a quick look at your test page, and it's giving a js error that may be the root of the problem. I think by putting the call to mm_setSubTops() in the table cell, it's running the function too quickly and ac...
by kevin3442
Fri Oct 06, 2006 8:38 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: All flyouts appearing in same location (on Mac IE only)
Replies: 4
Views: 5099

Hi Mark, I can't test, as I don't have a mac. But a couple of quick questions: at what position are the menus opening in macIE? Have you tried removing (comment out) the top= and left= settings in the submenus to see if that helps (one would suffice to test)? Also, a suggestion: I've never used popu...
by kevin3442
Fri Oct 06, 2006 8:26 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems incorporating menu into existing site
Replies: 5
Views: 4700

Hi Miss A,

Hard to tell what may be wrong from your description... lots of possibilities. A link to the page where you're testing would be most helpful, so we could examine the code, the error message, etc.

Cheers,

Kevin
by kevin3442
Fri Oct 06, 2006 8:24 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Force menus to fit cell width
Replies: 4
Views: 4319

Hi banana, I don't see any code for your main menu in what you posted. So, your main menu is defined: (1) in a separate .js file, (2) in inline code within the page (e.g., maybe inside a table cell), or (3) indepently of the Milonic system (e.g., images that call the popup() method. Could you please...
by kevin3442
Fri Oct 06, 2006 8:17 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: IE7 Milonic is not visible until window resize
Replies: 9
Views: 6145

Hi aamirrajpoot, I don't have IE7 installed to test, but I can offer two quick comments: (1) buildAfterLoad=true; is not a menu property, as you've applied it. It's a global property. You should remove that line from your Main Menu definition and place it with the other globals, like _subOffsetLeft ...
by kevin3442
Fri Oct 06, 2006 8:05 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Is there support for opening a link in a REMOTE iframe?
Replies: 15
Views: 11762

Just a quick note... depending on what browsers you want to support, there may be a simple solution. With some browsers, you will find that simply using the iframe's name in the menu item's taget property will work. I.e., aI("text=Item Text;url=whatever.htm;target=iframeName;"); Try it wit...
by kevin3442
Fri Oct 06, 2006 8:02 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Calling a popup page from the menu
Replies: 1
Views: 2303

Hi Julia, For a simple popup, use the target property in the menu item definition. Like so: aI("text=Item Text;url=whatever.htm;target=_blank;"); target=_new should also work. If you want more control of the appearance of the popup window, you should consider using a javascript function to...
by kevin3442
Fri Oct 06, 2006 7:53 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: menu text color on active page
Replies: 5
Views: 4354

Hi designer,

Ruth is definitely right about #0000CD being the blue color that you see. Why? Hard to say. I do notice that you have a small error in your definition of menuStyle. You have pagecolor="FFFFFF"; ... left out the #. See if that might help.

Cheers,

Kevin
by kevin3442
Fri Oct 06, 2006 7:32 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: How Can I Make Horizontal Menu R/L Scrollable?
Replies: 4
Views: 4355

Hey Bob, A quick (possible) solution you could try would be to set a negative left offset in your submenus, to compensate for the displacement. For example, at the top of menu_data.js, you could specify a global left offset, like so: var leftSubOffset = "-10"; Note that this is a string va...
by kevin3442
Fri Oct 06, 2006 7:23 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Collapse menu and every item having a clickimage
Replies: 10
Views: 8613

kevdog98 wrote:... but I also need the image to be centered and on the right is there a way to do that? ...
Hi Kevin,

I'm not sure I get it... centered AND on the right???

Kevin
by kevin3442
Thu Oct 05, 2006 1:28 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Collapse menu and every item having a clickimage
Replies: 10
Views: 8613

Hi Kevin, That worked, but it put my image on the left and I need it to be on the right. You can set imageposition="right"; in the menu style definition to move the image and clickimage to the right side of each menu item that uses that particular style. (But if you have a subimage defined...
by kevin3442
Wed Oct 04, 2006 5:08 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Issue with Vertical position of the popupmenu in <span>
Replies: 3
Views: 3424

You can pass positional offsets to the popup() method.

Code: Select all

popup(menuName, imageName, topOffset, leftOffset)
So, when you call popup() in one of your spans, you could set a negative topOffset to bump the menu back up as needed.

Hope that helps,

Kevin
by kevin3442
Wed Oct 04, 2006 4:40 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Nav Bar SubImage Help
Replies: 10
Views: 8364

The trick would be to apply different styles to the main menu and the sub menus. Copy your style1 to a new style, eliminate the subimage from the new style, and apply the new style to your mainmenu. Like so: beneath the definition for style1, add: styleMain=new copyOf(style1); styleMain.subimage = n...
by kevin3442
Wed Oct 04, 2006 4:33 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: HELP! Newbie with 5 - Flash Problems
Replies: 7
Views: 6641

Wolf, Re: the flash thing... I see that you've already got wmode set to transparent. Have you had it that way, or did you just now try it? To no good effect? If it's still a problem, try setting fixMozillaZIndex = true; at the top of your menu_data.js file, where the other global properties are set....
by kevin3442
Wed Oct 04, 2006 4:22 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with Style
Replies: 3
Views: 3547

Try as I might, I can't get it to show any lines. What version of FF are you using? What color is the line you are seeing? How thick... 1px, 2px? If you change the separatorcolor in style1, does it apply to these lines? Only think I can think of without being able to reproduce it is... if you don't ...
by kevin3442
Wed Oct 04, 2006 4:03 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Now that IE7 is released are Milonic menus compatible ...
Replies: 6
Views: 5563

Hope you knocked on some wood when you posted that buddy!
by kevin3442
Wed Oct 04, 2006 4:02 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Top position of sub-menus, stop alignment with menu items
Replies: 13
Views: 10898

Hi,

Not sure off the bat... probably something to do with different origins across browsers when containers are involved. I'll find some time later today to have a look and see if we can solve it.

Cheers,

Kevin
by kevin3442
Wed Oct 04, 2006 6:21 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Top position of sub-menus, stop alignment with menu items
Replies: 13
Views: 10898

Hello, just wondering if there was any new insight. ... If I understand correctly, you want to be able to set the top coordinate of all submenus to the same value as the top coordinate of your main menu. You could do so automatically with the following function: function mm_setSubTops(menuName) { v...
by kevin3442
Wed Oct 04, 2006 2:54 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Going to horizontal 3rd level submenu causes page to reload
Replies: 2
Views: 2772

Just plugged your menu code into a test page and the menu seems to operate fine at all levels. No page reloading. What version of the menu are you using? What browser to test? Does the reload happen in all browsers you've tried? Ruth is right... strange issue like this... a url to a test page demons...