Slide navigation menu options, please notify

Hello

I would like to build a navigation menu that is usually found in Flash interfaces, but since I don't know Flash, I would like to know if someone could suggest other ways to accomplish this task.

Thank you!

-Vertical navigation menu.
menus - 1 level (say three elements: 1,2,3)
-When hovering menu option 1, slide options 2 and 3 down and created space 1.1, 1.2, 1.3 submenu options will appear.
-When plane option 1.3, slide options 2 and 3 to the low suite to make room for suboptions 1.3.1 1.3.2 1.3.3.

It's a bit like a nested accordion, but with the difference that no content is presented inside the accordion, only choices of navigation.  Content should appear to the right of the vertical navigation menu.

Is this possible in Dreamweaver with Spry?


I guess this could be done easily with jQuery or MooTools, but I did not learn that yet. Unfortunately I'm not supergood-paid it in javascript, but I have in the past to change scripts for my preference with some guideance.

Thank you very much!
/ G

Menu accordion

http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu.htm

Vertical Drop-Menus

http://www.dynamicdrive.com/dynamicindex1/anylinkcss.htm

CSS vertical Menus

http://www.dynamicdrive.com/style/csslibrary/category/C2/

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
http://ALT-Web.com/
http://Twitter.com/ALTWEB
http://ALT-Web.blogspot.com

Tags: Dreamweaver

Similar Questions

  • My navigation bar has been accidentally closed (file, tools, refresh, and stop buttons, address bar, etc.) and now I can't get it back. I tried pressing F11 as someone suggested, but nothing happened. Please notify.

    My navigation bar has been accidentally closed (file, tools, refresh, and stop buttons, address bar, etc.) and now I can't get it back. I tried pressing F11 as someone suggested, but nothing happened. Please notify.

    Use the ALT key on the keyboard if you can't see the menu bar, then

  • Please add the option of power/link to download new pdfs with editing in the browser. I have a restaurant customer who is constantly updating their menu! Please help so that they can do it themselves!

    Please add the option of power/link to download new pdfs with editing in the browser. I have a restaurant customer who is constantly updating their menu! Please help so that they can do it themselves!

    Not the answer you want, but you could set up your quick customer with an ftp upload which would replace the existing pdf. I use Transmit and it would allow your customer to simply drag and drop on a folder.

  • Void / navigation Menu / integration issue of the e-commerce of the BC, please help!

    Hello

    sarahcosmetics.com is an e-commerce site, that I've developed by muse and British Colombia.

    I sectioned off sub categories form of pages which make correctly however my client recently asked me to add a submenu for navigating these pages at the top of the site.

    I currently have a link to the following pages: "Lips" 'eyes' and 'face' through hypertext links which I have incorporated into my muse projects 'page' products I was able to locate the appropriate links to my store via BC categories after setting up the shopping cart.

    It was to find work but my clients asked me to incorporate a dropdown under linking products to, 'Lips' "eyes" and "deal with" via the navigation menu.

    I thought it would be child's play I use a widget of grid of muse for the navigation menu that works very well on the other sites, however in this case, when I publish it links to these pages, it connects to my muse model pages for "Lips" 'eyes' and 'face' (who seem to have a different hyperlink) so no products are returned.

    I'm really need help to know what the difference is and how to get around this problem to properly set up the sub menu of navigation.

    Currently, the hypertext links this page works fine, http://www.sarahcosmetics.com/products.html

    So I guess you deleted the navigation sub under products menu.

    Includes pages 'Lips', 'Eyes' and 'Face' {tag_pagecontent} then they will appear under models when the site is published in British Colombia. In case you use the content of the tag, try to remove and insert content directly on the pages and then include in menu to main menu navigation link, it should work.

    If you still need help, then I suggest you to publish the site as a place to test new with all the links of the menu SUP to the title of the item in main menu of products, so that we can check on our end.

    Thank you

    Sanjit

  • Lists/Navigation Menu using universal theme APEX5

    I'm migrating my APEX to APEX5 application. I would like to use the new features of menu list/Navigation in the universal theme (so my menu items is displayed in the left navigation panel). I have a combination of static and dynamic options, and I don't know how to do this. My parent menu ('Reports' and 'Forms') options are static, but my choice of menu SUP for each will be the dynamic page navigation elements that will come from a SQL stmt. It would be a type of tree structure as below. Can you get it someone please let me know how to do this? Thank you!

    'Reports' (level 1 - static)

    "Report1" (level 2 option menu sub - dynamic)

    "I2" (level 2 option menu sub - dynamic)

    "Occurs3" (level 2 option menu sub - dynamic)

    .....

    'Forms' (level 1 - static)

    "Form1" (level 2 option menu sub - dynamic)

    'Form2' (level 2 option menu sub - dynamic)

    "Form3" (level 2 option menu sub - dynamic)


    bobmagan wrote:

    Thank you. My application was built on the sensitive to the APEX 4 theme. I wanted to use the new universal theme to take advantage of the update options. Previously, I had 2 parts of PL/SQL ('Forms' and 'Reports') who seized the dynamic pages of my custom table 'page' (see below). This would create a type menu tree they could click on launch my new pages for each. I hope to do the same sort of thing in the navigation/universal list menus.

    ----------------------------

    DECLARE

    Get_pages CURSOR IS

    Select page_alias, page_description

    page

    where page_type = 'REPORT '.

    and display_on_menu = 'Y '.

    order of page_order, page_description;

    BEGIN

    htp.tableOpen;

    Get_pages LOOP PAGE

    htp.tableRowOpen;

    HTP.p (')');

    If: APP_PAGE_ALIAS = page.page_alias then null;

    HTP.p ('': page.page_description: '');

    on the other

    HTP.p ('': page.page_description: '');

    end if;

    HTP.p (')');

    htp.tableRowClose;

    END LOOP;

    htp.tableClose;

    END;

    The application to the universal theme of the switch.

    Create a dynamic list query-based in the sense of:

    /* Static parent entries */
    select
        1                      lvl
      , 'Reports'              label
      , null                   target
      , null                   is_current_list_entry
      , 'fa-table'             image
      , null                   image_attribute
      , null                   image_alt_attribute
      , null                   attribute1
      , null                   attribute2
      , null                   attribute3
      , null                   attribute4
      , 'REPORTS'              attribute5
      , null                   attribute6
    from
        dual
    union all
    select
        1
      , 'Forms'
      , null
      , null
      , 'fa-edit'
      , null
      , null
      , null
      , null
      , null
      , null
      , 'FORMS'
      , null
    from
      dual
    union all
    /* Dynamic reports entries */
    select
        2
      , page_description
      , 'f?p=' || :app_alias || ':' || page_alias || ':' || :app_session || '::' || :debug
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , 'REPORTS'
      , page_order
    from
        page
    where
        page_type = 'REPORT'
    and display_on_menu = 'Y'
    union all
    /* Dynamic forms entries */
    select
        2
      , page_description
      , 'f?p=' || :app_alias || ':' || page_alias || ':' || :app_session || '::' || :debug
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , null
      , 'FORMS'
      , page_order
    from
        page
    where
        page_type = 'FORM'
    and display_on_menu = 'Y'
    order by
        12 desc /* attribute5 */
      , 1       /* level */
      , 13
      , 2
    

    Note that the attribute columns 1, 2 and 4 are taken into account by the model Menu lateral Navigation, then jump on them and use the attribute column 5 and for all required custom data in your query.

    Then go to the desktop user interface detail pageand set attributes for the Navigation Menu:

    List of the navigation menus:

    Position: Side

    Model from the list: Side Navigation menu

  • Frozen/inaccessible menu options

    I used Version 28 (dead last) for years because I had problems with the newer versions are buggy on my old 2005 Dell Win_XP 32 bit desktop PC. I bought a new laptop HP15 a few months back (Win8.1 x 64) and were aired V.28 on it because she had more buttons toolbar available (download progress bar, the button Stop/Reload, old Style bookmarks Drop Down Menu). Today, I decided to upgrade to the latest version (38.0.1) and so far it has not seemed like an upgrade for me.

    Missing taskbar buttons mentioned above are a gripe I have. Don't know why they have been removed from more recent versions, but that's for another time. My main problem with v.38, is that since I installed it, the Options menu is locked or inaccessible. When I open the Options, the menu that is displayed will doesn't let me click on anything, whether more there a strange button unmarked in the middle of the screen which does nothing when I click on it (see attached photo). I read some of your support items, but none seemed to solve the problem. I even changed the name of the existing Firefox folder and reinstalled a clean version that perhaps, since the first installation is just an upgrade rather than a new installation, something the previous v.28 may be in conflict with the new version, but still I can't access the Menu Options. He seems unmarked how key wants to click on me to perform a task or something before it won't let me access the Options, but as I said, clicking on it doesn't do anything. The button support when I click on it, but it stays on the screen and nothing happens then.

    Any help would be appreciated. I might have to go back to the v.28 if the Options menu does not start working.

    PS: The uploader of image for this post kept showing progress twirling star without checking my screenshot was actually transferred, so here I post an external link to the image:
    http://img.Photobucket.com/albums/V363/iambigwayne4/Misc-images/firefox_options_zpsd3jniykd.PNG

    Hi, probably your custom theme interferes with the new options panel - please search if an update is available for this addon or disable for the moment and report the problem to its author.

  • Tabs on top and menu options button missing in FF15 beta App

    (1) removal of the menu item for the tabs up to 15 FF. The option is always available in subject: config. Then please give us the back menu option.

    (2) menu option to remove the button "App" of Firefox seems to have disappeared as well. I use Compact Menu 2 so the App button is a completely unnecessary item in the Firefox UI. Please put this option too.

    (3) feedback in FF15 system seems to be broken. By clicking the submit button gives no visible sign that the feedback was sent and the web page does not change.

    Thanks for reading.

    Well, I solved it for now.

    I forgot the SeaMonkey browser, which has a beautiful USER interface without most of the unnecessary changes (and arrogantly implemented) that started with Firefox 4. I can get a set of buttons I like the tabs in the address bar of the box, and ABP and Element Hiding Helper work very well also.

    Oh and another fantastic improvement. SeaMonkey does not have this status notification component local post Firefox 4 boring inside. It has a bar in nice traditional status who stays in the same place all the time. Personally, I find all intensely distracting pop-up notifications and after some time I automatically, click on them out of sight. The most annoying things is when they cannot be configured off - all the time.

    In any case, it's me done with FireFox. That is until the Seamonkey project gets infected by the virus 'change for the sake of change' crazy even the Firefox team seems to have caught.

  • I can't find a song in my itunes store, but when I search online it seems to be available? Please notify.

    I can't find a song in my itunes store, but when I search online it seems to be available? Please notify.

    Also, when I select the option "view in itunes", it will open itunes but does not show the song I want... Here is the song im trying to get

    It's tricky (DJ Fresh Remix) Run - D.M.C.
  • tinkered with toolbars, navigation, menu, buttons on the home page, page previous button-all gone. Whats left is just yahoo address pane, just gimme helps a bit to a 'download resinstall toolbar"will suffice. There is nothing to click, just a restoration-

    Went toolbar, navigation, menu, advance, home button, the button previous and all gone coz I was playing with the removal of the options of this and that... what remains is the Yahoo address pane and the button Zoom-close, nothing to click...

    Don't see the menu bar (file, publishing, display, history...) (Help)? Hold down the key (key in OSX) and press the following letters in this exact order: V T M
    The bar of menus must now appear permanently, unless you turn it off again (view > toolbars). Turn on/off the menu bar is a new feature in version 3.6.
    See the other bars under view > toolbars. Click on one of them will place a check mark (display) or remove the check mark (not shown).
    To display the status bar, display, and then click status bar to place a control mark (display) or remove the check mark (not shown).

    • If items are missing then see if you can find them in the view > toolbars > customize window.
    • If you see the item in the window customize then bring her back in the window, customize the Navigation toolbar.
    • If you do not see this item then click Restore default set in the view > toolbars > customize window
  • Hi, I put the web filtering to the general, but there are some * site that always appears. Please notify

    Hi, I put the web filtering to the general, but there are some * site that always appears. Please notify

    Hi EddyMoe,

    You have encountered this problem because the site is not popular enough, or the content of Web site changes frequently that it has not been classified as an adult site. Security checks family with service of content classification to determine the category of the site. For more information about how Family Safety determines the web content, please refer to this article. To avoid this, you must change your level of web filter to Allow list only. To do this, follow these steps:

    1. connecting the account parent in http://fss.live.com
    2. under the child's name, click change settings
    3. Select the Web filtering.
    4 adjust the slider for web filters in list only or to your preferred configuration.
    5. click on Save.

    6. click onWeb filtering lists.
    7. Enter the web address that you want to allow in the box and click allow.
    8. click on Save.

    Finally, please always remember to update the family safety filter so you can have the latest parental control settings.

    Thank you!

  • Where is the menu options in FSX?

    I can't find the menu 'OPTIONS' in FSX. I am running Windows 7. Can anyone help?

    Hi richardlangston,
     
    Because the problem is looking for a setting in the game, please contact Flight Simulator professional technical support on this issue.
     
    Click the Contacts section the link given below to contact technical support technician.
     
    Solutions for the Flight Simulator Centre
  • Need help to apply the menu option

    Hello

    you will need to apply the menu option by clicking on 'V' image and close the menu option by clicking on the image itself. I did everything but not able to do this menu option can you please help... I have attached my code

    I have

    Have you tried the code that I wrote for you?

  • I just changed my signature of account Windows Live Hotmail E-mail via the menu options, and since then, a big grey box appears on the emails that extends from left to right and is also important.

    Hello!

    A few weeks, I just change my signature to email hotmail via the menu options, and since then, a big grey box appears on the emails that extends from left to right and is also important. I went into the signing options, re-created the signature, and for 3 weeks completely removed the signature, but I always get the grey box display. Email being accessible via www.hotmail.com, and I don't have the problem, when I answer emails via my iPad2.

    Any help will be greatly appreciated, so that e-mail can be sent to the search normally. Thank you!

    Hi Paul,.

    The question you posted would be better suited to the Windows Live community. Please visit the link below to find a community that will provide the support you want.
    http://windowslivehelp.com/product.aspx?ProductID=2

  • No Images in the upper Navigation Menu (APEX 5.0)

    Hello!

    I have defined images for each entry in the navigation menu. When I select the position of the menu (in Details of User Interface) to 'Coast', the images are rendered.

    But if the Position of the 'Top' is slected, there is no Images at level 1. At level 2, there is error Images.

    Is this a known issue?

    Unbenannt.png

    Best regards!
    Janek

    Hi Janek,

    Unfortunately this bug in the "Menu Navigation above" model and we're already tracking with bug #21202884.

    But there is an easy solution for it.

    1. Go to the components shared-> models and copy the above 'Menu of Navigation' template and name it "my Menu of Navigation above.
    2. Change the new 'My Top Navigation Menu'
    3. Go to the region 'Sublist Entry'
    4. In the attributes 'sublist model running, running with sublist, associated elements associated with elements of the sublist', replace the placeholder #IMAGE # #ICON_CSS_CLASSES #.
    5. Go to components-> shared-> Desktop User Interface attributes
    6. In the region "Navigation bar", set the attribute 'List model' to 'my Menu of Navigation above.

    Please note that the top-level menu bar entries will NOT show an icon. Only the menu entries will display the icon.

    Concerning

    Patrick

  • Navigation menu

    I have tested a free trial version and have set up Master Pages, and have inserted a navigation menu.  I would like to know:

    • How can I separate the page names in the navigation menu to space out them individually in the space of a footer?
    • How can I increase the size of a navigation button as the Cup awarded the name of one of the page width.

    Thank you!

    If I understand correctly: the menu widget can be separated into its various components. You can, however, disable the background fill and adjust the spacing internally and externally in the Panel spacing using margin left and right options and parameters of the horizontal gutter for spacing between items.

    To sort by the name of the long page. Uncheck all Edit in the Menu options panel. Now you can target individual elements and adjust accordingly.

    I hope this helps.

    David

    Creative muse

Maybe you are looking for

  • Install a new HD player in a Satellite A30

    Hello I just bought a new 40 GB hard drive to replace the old 40 GB one into the a30 satellite address because he had a problem with it. How can I install it now? I put it in the laptop, but now when I try and turn it to run the recovery software scr

  • LabVIEW: Null error window in an application?

    Hello I just built an app from a vi and I encounter an error: LabVIEW: Null window. The first level VI 'name1.vi '. was arrested in stranger on the block diagram of the 'name2.vi '. The application runs smoothly until the user selects a few keyboard

  • black screen at startup and even on HDMI

    My hp pavilion dv7 gives me a black screen at startup and even if it is connected to my HDTV via HDMI. have tried several methods but still not working (the battery grip and long pressing the power button and then using the AC adapter to turn on). Ca

  • Blue screen on the launch of a game

    http://sdrv.Ms/11oEoOZ = the minidump and wer in a ziphttp://sdrv.Ms/17XXu3F---Le file of DriverView Behold, xml and .bmp files relating to the accident. No matter what?I am really puzzled it suddenly started past recently, I can't PLAY anything now.

  • Convert Expressions Web for mobile friendly site

    I have a vast built website w/Expressions Web 2006 version. I would like to convert to a more mobile friendly site with/without duty rebuild about 40 pages. Is there a software for web design or advanced web version of Expressions that is mobile frie