Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:12
horizontal slide out for Sub-Menu
Poster: chrisinoz
Dated: Tuesday February 24 2009 - 1:13:19 GMT
Hi I have the main menu as horizontal
style=menuStyle;
alwaysvisible=1;
orientation="horizontal";
overfilter="";
position="relative";
Client wants sub-menu to slide horizontal not vertical. I thought this would do the job but it still drops vertically - version 5.813
itemwidth="140";
orientation="horizontal";
openstyle='rtl';
Assistance appreciated
Cheers
Chris
Re: horizontal slide out for Sub-Menu
Poster: chrisinoz
Dated: Tuesday February 24 2009 - 11:47:19 GMT
This is the site where the menu is to go - see it is slidedown at present
menu goes nowhere - just a test front page at present.
http://rooms.tastesa.com/
Thanks
Re: horizontal slide out for Sub-Menu
Poster: Andy
Dated: Thursday February 26 2009 - 14:58:15 GMT
Hi,
You should be able to change the direction from down to right, like this:
overfilter="Blinds( Bands=1,direction=right, duration=0.3);Alpha(opacity=95);Shadow(color=#777777', Direction=135, Strength=3)";
Hope this helps
Milonic Support
Re: horizontal slide out for Sub-Menu
Poster: chrisinoz
Dated: Thursday February 26 2009 - 21:53:05 GMT
Thanks Andy - I tried that but to no avail
http://rooms.tastesa.com/
this is what I am trying to achieve
http://rooms.tastesa.com/slideright.jpg
Cheers
Chris
Re: horizontal slide out for Sub-Menu
Poster: Ruth
Dated: Thursday February 26 2009 - 22:50:23 GMT
Hi,
If you want the submenu to also be horizontal then you have to tell it to be that. The default orientation is vertical. So, make them:
Code:
with(milonic=new menuname("About")){
style=nextStyle;
orientation="horizontal";
aI("text=commercial;url=commercial.html;");
aI("text=hotels;url=hotels.html;");
aI("text=home;url=home.html;");
aI("text=outdoor;url=outdoor.html;");
}
with(milonic=new menuname("Articles")){
style=nextStyle;
orientation="horizontal";
aI("text=current;url=Articles.html;");
aI("text=library;url=library.html;");
}
style=nextStyle;
orientation="horizontal";
aI("text=commercial;url=commercial.html;");
aI("text=hotels;url=hotels.html;");
aI("text=home;url=home.html;");
aI("text=outdoor;url=outdoor.html;");
}
with(milonic=new menuname("Articles")){
style=nextStyle;
orientation="horizontal";
aI("text=current;url=Articles.html;");
aI("text=library;url=library.html;");
}
Hope that is what you meant.
Ruth
Re: horizontal slide out for Sub-Menu
Poster: chrisinoz
Dated: Friday February 27 2009 - 0:55:38 GMT
Thanks Ruth!