I have a CFMenu with the type set to horizontal. I'd like to have the sub-menu items open vertically. Is that possible?
Here is my code. I want the Portals sub-menu (Portal A, Portal B, Portal C) to open vertically instead of horizontally.
Expand|Select|Wrap|Line Numbers
- <cfmenu name="topMenu" type="horizontal" fontsize="14" fontcolor="##7A7251"
- font="'Lucida Sans', verdana, sans-serif;" selectedFontColor="##F58026"
- menustyle="background-image:url('../images/toplinks_bg.gif');"
- bgColor="##FFFFFF" childstyle="float:center;border-style:solid;padding:0px;border-width:0px;display:inline;margin-left:45px;">
- <cfmenuitem name="home" href="##"
- display="Home"/>
- <!--- The ColdFusion menu item has a pop-up menu. --->
- <cfmenuitem name="portals"
- href="##" display="Portals" childstyle="border:0px;padding:2px 10px 2px 10px;">
- <cfmenuitem name="fso"
- href="##" display="Portal A"/>
- <cfmenuitem name="fso"
- href="##" display="Portal B"/>
- <cfmenuitem name="fso"
- href="##" display="Portal C"/>
- </cfmenuitem>
- <cfmenuitem name="logout" href="##"
- display="Logout"/>
- </cfmenu>