Recent Questions Javascript Framework Tree Drop Drag Resize
Q: Hello, I have used your menus on a few different websites I have built and have never had a problem like this one. I will be purchasing a license if i can get this to function correctly. For some reason my php javascript menu icons are overlapping or repeating and appearing in a wrong place, but only in IE. In firefox it looks fine....and in safari, just not in IE. here is the temp link to the page. http://www.domain.com/indextest3.htm
Thanks for the help, the support has always been great in the past and i look forward to purchasing a license once this is resolved....
A: var menuBackRepeat="no-repeat";
Check the following parameter also, you've set it incorrectly:
var itemPadding="1px 5px 2px 10px1";
You should write, for example:
var itemPadding="3px";Q: I have a transparent dhtml menu located at the bottom of the page with just one level of submenus. On larger screens, the submenus open either upwards or downwards, depending on how many items are in the transparent dhtml menu.
Can I set the submenu's to always open upwards?
A: Try to set the following parameter:
var subMenuVAlign="top";
Q: I use your product for one of my clients and so I am familiar with using Deluxe Tuner on the Mac and editing that menu, etc. It is a simple menu though, that doesn't use any images or anything fancy.
I want to purchase the javascript nav menu for another client.
My question is, he loves that tabbed javascript nav menu I originally did, and right now they are in one big image map. I can cut them up, but with your menu software, will I be able I to have the top menu as those tab images, and the sub-menu show on mouseover as just plain text? (Like SigmaFlow's sub-menus.)
Any advice is appreciated. Thank you!
A: Yes, of course, I don't see any problem with it.
You can use any images as item background, see for example:
http://deluxe-menu.com/data-templates/vista-style-01-template-sample.html
Q: Is there a way to programmatically close a hover popup via javascript?
A: You can close the popup using the following function:document.getElementById('win').hide();
Unfortunately it won't work if you use iframe as window content.
You open another page in the popup (in Iframe) so you cannot access
document.getElementById('win').hide();
element which is situated on the first page.
When you use text or object_id as window content the content of the popup will be situated
on the same page so you can access document.getElementById('win') element and hide it.
There is a workaround for Iframe.
Use text as content type and add the following code inside popup:
<a onclick="document.getElementById('win').hide();">...</a> <iframe></iframe>