Recent Questions
Q: I just visited your site and found the scrollable menu.
I downloaded the trial version, but where to find the scrollable menu.
Going through the trail version and finding that it would satisfy all my requirement.
My requirement is as below
Category >> List of Continent > List of country > List of State > List of city.
In my case the list of country, state and city will be more so need a scroll over there.
Let me know is there any limitation in your menu.
A: If you have many items in submenu you should set the following parameter to make you submenu scrollable:
var smSmartScroll=1;
Please, see more info here:
http://deluxe-menu.com/scrollable-submenus-sample.html
Q: All hide drop down menu tabs seem to have white in the upper corners rather than transparent.
A: You should delete white color and make corners transparent in anyGraph editor, for example in Photoshop.
Q: If there is an option in the php navigation bar to make all of the top items the same size?
A: Set width for the items using Individual styles:
var itemStyles=[["itemWidth=100px"],] //style 0
Assign Individual Styles for the menu Items.
var menuItems = [
["Item 1","", "", "", "", "", "0", "", "", "", "", ], //style 0
["Item 2",", "data2.files/icon1.gif", "data2.files/icon1o.gif", "", "", "0", "", "", "", "", ], //style 0
...
You can see more info here:
http://deluxe-menu.com/individual-item-styles-info.html
Q: When I open my site in Internet Explorer 6.0 the main drop menu code shows up nicely but the drop-down sub-menus are separated. The drop menu code work very nicely in a Firefox browser but not in IE.
A: There are some problems also with your css.The problem is that the drop menu code can't get css properties of the object if they are described in separate .css block (or file).
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:relative"). To get the value you should move .css style into style="" attribute.
Please, try to add your
css file -> inline css, for example:
You should add style="position:relative;"
to the
<DIV id="right">
So, you'll have:
<DIV id=right style="POSITION: relative;">
Check that.