Forum Moderators: mack

Message Too Old, No Replies

Drop Down Menus

Creating certain type of drop down menu

         

Stephen Tiller

9:23 am on Jul 14, 2005 (gmt 0)

10+ Year Member



Hi everybody

I am used to creating drop down menus in Dreamweaver using text for the dropdown menus.

What I want to know is how to have a drop down menu that when you move down the options the top image stays on its 'rollover' image/state.

i.e. say a user is viewing PRODUCTS options and when moving down the PRODUCTS list to view items such as Notebooks, Computers, etc. PRODUCTS is still highlighted.

What is the best way to create this type of drop down menu? Can it be acheived in Fireworks?

Steve

JAB Creations

4:09 pm on Jul 14, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Insted of using Dreamweaver's bloatware you could simply use CSS. Make sure you use overflow to keep the menu from always appearing to be expanded else all your menus will expand.


div.menu {
height: 20px;
overflow: hide;
width: 150px;
}
div.menu:hover {
height: 200px;
width: 150px;
}

vicsvw

1:51 pm on Jul 20, 2005 (gmt 0)

10+ Year Member



Any examples available to look at.?