Horizontal menu on two separate lines

Hi I have a question about the menu horizontal navigation for desktop widget.  I want to access the 12 pages, but there is not enough space through page 12 menu items, it is possible to have the menu widget to have 2 lines instead of one menu items.

Hello

You can try to create two Menus by hand with 6 menu items.

To create a menu manual you need to go into Menu widget and must select the type of menu as "manual."

Then the moment where you select 'manual', it will show you a menu option > click and '+' sign will appear > click the '+' to create menu items 5.

Once done link these small objects with related pages using the hyperlink Panel

Similarly, you can create menus for the other 6 points. (Make sure to place them in a master page to avoid extra work)

Concerning

Vivek

Tags: Adobe Muse

Similar Questions

  • How to remove duplicates in two separate lines in SQL?

    Hello

    I need to identify the data in double with two separate lines. See my below data structure.
    INDEX OF NAMES NAME_1 START_DATE END_DATE FLAG VALUE
    B ON 275 SE 13/12/2005-31/12/2010 1
    SELF 1 375
    SELF 1 475
    ON 275 SE 2 B 13/12/2005-31/12/2010
    SELF 2 375
    SELF 2 475
    ON SE 175 13/12/2006 AND 31/12/2010 B 3
    SELF 3 375
    SE ON 3 475

    This is my sample data. Here, the data is mirrored with different index columns. INDEX 1 and 2 contains the same combination group. I so need to identify one of the combination double (i.e. INDEX 1 or 2). Anyone can come up with the exact solution?

    Thank you

    I thought it had to do with the order of the INDEX field. The query checks only the value of the previous INDEX value.

    I think I found what the problem was.

    Try this:

    with test_table as
    (select 'SUR' NAME, 'SE' NAME_1, '275' VALUE, to_date('13/12/2005','DD/MM/YYYY') START_DATE, to_date('31/12/2010','DD/MM/YYYY') END_DATE, 'B' FLAG, 1 IND from dual union all
    select 'SUR', 'SE', '375', null, null, 'A', 1 from dual union all
    select 'SUR', 'SE', '475', null, null, 'A', 1 from dual union all
    select 'SUR', 'SE', '275', to_date('13/12/2005','DD/MM/YYYY') ,to_date('31/12/2010','DD/MM/YYYY') ,'B', 2 from dual union all
    select 'SUR', 'SE', '375', null, null, 'A', 2 from dual union all
    select 'SUR', 'SE', '475', null, null, 'A', 2 from dual union all
    select 'SUR', 'SE', '175', to_date('13/12/2006','DD/MM/YYYY'), to_date('31/12/2010','DD/MM/YYYY'), 'B', 3 from dual union all
    select 'SUR', 'SE', '375', null, null, 'A', 3 from dual union all
    select 'SUR', 'SE', '475', null, null, 'A', 3 from dual union all
    select 'SUR', 'SE', 'IPT', to_date('13/12/2005','DD/MM/YYYY'), to_date('31/12/2010','DD/MM/YYYY'), 'B', 100 from dual union all
    select 'SUR', 'SE', '375',null, null, 'A', 100 from dual union all
    select 'SUR', 'SE', 'AO', null, null, 'A', 100 from dual union all
    select 'SUR', 'SE', 'IPT', to_date('13/12/2005','DD/MM/YYYY'), to_date('31/12/2010','DD/MM/YYYY'), 'B', 218 from dual union all
    select 'SUR', 'SE', '375' ,null, null,'A' ,218 from dual union all
    select 'SUR', 'SE', 'AM' ,null, null,'A' ,218 from dual union all
    select 'SUR', 'SE', 'IPT' , to_date('13/12/2005','DD/MM/YYYY'), to_date('31/12/2008','DD/MM/YYYY'), 'B', 334 from dual union all
    select 'SUR', 'SE', '375' ,null, null,'A', 334 from dual union all
    select 'SUR', 'SE', 'AP',null, null, 'A', 334 from dual union all
    select 'SUR', 'SE', 'IPT' , to_date('01/01/2009','DD/MM/YYYY'), to_date('31/12/2010','DD/MM/YYYY'), 'B', 335 from dual union all
    select 'SUR', 'SE', '375' ,null, null,'A', 335 from dual union all
    select 'SUR', 'SE', 'AP',null, null, 'A', 335 from dual union all
    select 'SUR', 'SE', 'IPT' , to_date('13/12/2005','DD/MM/YYYY'), to_date('31/12/2010','DD/MM/YYYY'), 'B', 336 from dual union all
    select 'SUR', 'SE', '375' ,null, null,'A', 336 from dual union all
    select 'SUR', 'SE', 'AP',null, null, 'A', 336 from dual)
    SELECT name,
           name_1,
           value,
           start_date,
           end_date,
           flag,
           ind,
           MIN(diff_flag) over(PARTITION BY NAME, NAME_1, IND) min_flag
      FROM (SELECT t3.*,
                   CASE
                     WHEN lag(VALUE, lag_flag)OVER(ORDER BY IND, start_date, VALUE) != VALUE AND flag = 'A' THEN
                      1
                     WHEN (lag(value, lag_flag)OVER(ORDER BY IND, start_date, VALUE) != value
                        OR lag(start_date, lag_flag) OVER(ORDER BY IND, start_date, VALUE) != start_date
                        OR lag(end_date, lag_flag) OVER(ORDER BY IND, start_date, VALUE) != end_date)
                        AND flag = 'B' THEN
                      1
                     WHEN lag_flag = 0 THEN
                      1
                     ELSE
                      2
                     END diff_flag
              FROM (SELECT t2.*,
                           first_value(lag_count_flag) OVER(PARTITION BY NAME, NAME_1, IND
                                                                ORDER BY NAME, NAME_1, start_date) lag_flag
                      FROM (SELECT t1.*,
                                   CASE
                                     WHEN FLAG = 'B' THEN
                                      lag(COUNT, 1, 0)
                                      OVER(ORDER BY IND, start_date, VALUE)
                                   END lag_count_flag
                              FROM (SELECT t.*,
                                           COUNT(*) over(PARTITION BY NAME, NAME_1, IND) COUNT,
                                           row_number() over(PARTITION BY NAME, NAME_1, VALUE,
                                                                          START_DATE, END_DATE, FLAG
                                                                 ORDER BY IND) row_number
                                      FROM test_table t) t1) t2) t3) t4
     ORDER BY ind,
              start_date,
              VALUE;
    

    Published by: Manuel Vidigal on Abr 13, 2009 18:18

  • How have you joined two end on two separate lines drawn with the pen in CC2014, tried everything tool points!

    How can I join two end drawn with the pen tool points in CC2104

    I tried and it doesn't work?

  • I am in muse and I split my horizontal menu to put an image in the middle two half of the. Is this possible? I'm on PC.

    Im trying to put an image in the middle of my menu but can't figure out how. Can someone please?

    You create two separate menus and place the image inbetween.

    Mylenium

  • Separate lines of two tables related by a third

    Hello

    I need to write a sentence SQL of a group of SEPARATE lines, each line in a shape of: A.X, A.Y, C.IDBOLETA. Tables A and C are related through the table C, as follows:

    Table A: INDUSTRIAGEO

    VARCHAR2 (20) NIT NOT NULL,.
    CORRELAIGEO NUMERIC (2) NOT NULL,
    NOMBREAGENCIA VARCHAR2 (255) NOT NULL,
    DIRECCION VARCHAR2 (255),
    X NUMERIC (12.8) NOT NULL,
    IS NUMERIC (12.8) NOT NULL,
    CONSTRAINT PKGEOINDUST PRIMARY KEY (NIT, CORRELAIGEO),
    CONSTRAINT FKGEOINDUST FOREIGN KEY (NIT) REFERENCES INDUSTRIA (NIT)

    Table B: ANÁLISIS

    IDANALISIS NUMERIC (12) NOT NULL,
    VARCHAR2 (20) NIT NOT NULL,.
    CORRELAIGEO NUMERIC (2) NOT NULL,
    DATE DATE NOT NULL,
    IDINSPECTOR NUMERIC (4) NOT NULL,
    CONSTRAINT PKANALISIS PRIMARY KEY (IDANALISIS).
    CONSTRAINT FKANALGEOI FOREIGN KEY (NIT, CORRELAIGEO) REFERS TO INDUSTRIAGEO (NIT, CORRELAIGEO).
    CONSTRAINT FKANALINSP FOREIGN KEY (IDINSPECTOR) REFERENCES INSPECTOR (IDINSPECTOR)

    Table c: ANALISISBOLETA

    IDANALISIS NUMERIC (12) NOT NULL,
    CORRELAANALISIS NUMERIC (2) NOT NULL,
    IDBOLETA NUMERIC (12) NOT NULL,
    IDCATEGORIAINDUSTRIA NUMERIC (3) NOT NULL,
    CONSTRAINT PKANALBOLE PRIMARY KEY (IDANALISIS, CORRELAANALISIS),
    CONSTRAINT UKANALBOLE UNIQUE (IDBOLETA).
    CONSTRAINT FKANALBOLE FOREIGN KEY (IDANALISIS) REFERENCES COPS. ANÁLISIS (IDANALISIS),
    CONSTRAINT FKANALCATI FOREIGN KEY (IDCATEGORIAINDUSTRIA) REFERENCES COPS. CATEGORIAINDUSTRIA (IDCATEGORIAINDUSTRIA)


    Thanks for your help!

    Mario

    Maybe

    select distinct a.x,a.y,c.idboleta
      from industriaego a,
           cops.analisis b,
           analisisboleta c
     where a.nit = b.nit
       and a.correlaigeo = b.correlaigeo
       and b.idanalisis = c.idanalisis
    

    Concerning

    Etbin

    Edited by: Etbin on 4.5.2010 21:42
    the Elf of copy/paste started: b.correlaigeo instead of b.a.correlaigeo (as in the comment of the OP below)

  • (Spry) Alignment of the horizontal Menu

    I am currently working on my first web page design. Never. I can't make my horizontal Spry menu to reach both sides of my page, which is I forced to 720px wide. I followed some of the answers suggested in other threads, but nothing helped. Any help would be appreciated, because there are obviously a ton that I do not know this! The page is published on fivepinesphotography.com/index.php thanks! I'm having a blast learning this kind of thing! Here's a screenshot if it helps...

    menubar_ss.jpg

    You must give the li elements fixed wide. Since you have 8 items in a menu of 720px, i.e. 90px each. Change the width property of the ul. MenuBarHorizontal li auto to 90px.

    This will result in some of your menu on two lines of packaging items. Solve the problem by changing the padding in ul. MenuBarHorizontal a 0.5em 0.75em to 0.5em 0.3em 0.5em 0.1em.

    For the menu look better, you need to choose slightly shorter labels for each menu item or slightly reduce the size of the police.

    While you make changes, get rid of this stupid blocker right click. Anyone who wants to look at your code or save your images can bypass this blocker in a few seconds.

  • HP Z27q 5 K, that monitor is considered to be two separate monitors

    Just updated the operating system of El Capitan Sierra.  (2013 MAC PRO - 12 hearts - 64 gig Ram w/SSD)

    My HP Z27q monitor 5K, in the Sierra, (which used to work in El Capitan) is now considered to be two separate screens.   In El Capitan, I have an announcement file (http://www.iclarified.com/49265/how-to-enable-support-for-the-hp-z27q-5k-monitor - to-mac-os-x-yosemite) to the override file and the wa it worked.

    However, Sierra I don't have rights to ad this file.

    Help, please!

    Hi PKscott,

    Have you tried to disable SIP protection and then installing the substitution file?

    1. Restart your mac
    2. until the apple logo appears press "r", hold "r" down until you see a progress bar appear
    3. When prompted choose English
    4. Click the Utilities menu
    5. Choose terminal
    6. in terminal type "disable csrutil".
    7. Press return
    8. You should see a message "the SIP is disabled.
    9. Click on the terminal menu
    10. choose to quit smoking
    11. Click on the Apple menu
    12. Select restart
    13. If you are prompted to select a startup disk select Macintosh HD
    14. Click on restart
  • How can I have two separate libraries in WMP?

    I try to have two separate libraries; one containing only the Rock and the only classic containing a single?  I created a new library called Other Music, but I can't link files to it.  When I click right there no library management.  It also does not appear on the menu drop-down organize - manage libraries.  There is also an icon titled "Other libraries", but it does not.

    How can I implement these two music files so that I can display separately from the other.  The help of WMP does not receive me close this issue.
    Please direct me to a solution.

    Hello
     
    There is no direct option for Windows Media player to have 2 of the library. However, you can add folders to the library where the player controls music.

    You can create several playlists as you like, that you can use with Windows Media Player.
     
    Please follow the links below to solve the problem.
     
    Customize a library

    http://Windows.Microsoft.com/en-us/Windows7/customize-a-library
     
    Add or edit media information in Windows Media Player

    Add items to the Windows Media Player library

    Reference: To add a folder to be monitored by the player

    I hope this helps.

  • What are the BCD entries to TWO instances of dual boot of Vista professional in TWO separate hard drives?

    What are the BCD entries to TWO instances of dual boot of Vista professional in TWO separate hard drives? -Dell Vostro 1710, my wife had to be returned to Dell, I installed its Vostro hard drive in my Dell Vostro 1710 SAME, but I don't get a menu starting double when I turn on my Vostro. (Both Vista Business operating systems are licensed separately).

    I would like to start his drive hard so that it looks like 'his' office on 'his' computer.

    Thanks for any advice.

    The easiest way is to use the DualBoot Pro.  He has the tools to write the necessary code automatically.  It is excellent for managing the tasks you want to do.

    However, you have a potential license problem.  Even if your Dell has the exact code in the BIOS to activate the copy of Windows on the hard drive of your wife, the computer is only allowed for an OEM copy.  If Dell is back after repairs then you should be OK once you have turned on the hard disk in his computer of your wife. You can delete the entry of additional start with DualBoot Pro menu,

  • BlackBerry Smartphones how can I move "Mémo" on applications to position on the two first lines of the homepage

    How can I move a Memo on the first two lines of the home screen applications?  Can you please provide information or a link to the handling and displacement than the positrons of type memo buttons clickable to reposition on the screen.  Thank you

    So when you are in the menu mode, highlight the memo and press the "menu". It will give you an option to move it. To move it to the home screen, you have to move to one of the two first lines. Just highlight where you want to move and click down, or press the Menu button again to make the move.

  • Two vertical lines Bug?

    When I open this image, note the two vertical lines. What is happening with this?

    I would put the image to imgur.com to download, but when I do myself, the lines are not there.

    TromboneAl wrote:

    When I open this image, note the two vertical lines. What is happening with this?

    I would put the image to imgur.com to download, but when I do myself, the lines are not there.

    Go to the view menu and check if the 'Guides' are unchecked.

  • A site two separate menus... is this possible?

    I am new to Muse and try to create a new site.

    I created a landing page and I want people to be able to navigate between the landing page and my other sites. To navigate to an external site is easy. But, what happens if I am basically creating a site within a site? One with its own menu etc. How can I go about it?

    Thank you

    Kate

    Hello

    If you need two separate navigation bars in the site of Muse, you can choose to create a menu manual.

    See the following links for more information about the menu bar Manual:

    Adobe help Muse | Work with widgets in the Menu

    Adobe help Muse | Create hyperlinks

    It will be useful,

    Sonam

  • Horizontal menu with a higher level having pages below.

    I examined the response to a similar post and reviewed the settings as shown in the picture. My problem is that I want this a menu item to display pages vertically and not fall down and display on the right. I tried all means to set the preferences on the menu I can think and she won't do not impact on the menu as a whole. This includes unchecking the checkbox that allows individual changes. Can someone give me a step by step procedure to do my a top-level menu item displays pages falls down vertically to selection as opposed to low and to the right of text? It is the latest version of Muse. The menu widget was created allowing him to detect the pages the way they were put in design mode.

    OK just in case other users new to dream have the same problem with a horizontal menu that need to have one of the top level links a vertical of the menu drop-down below. Initially in bird's eye view, that I had created the top-level page and all other pages below stacked vertically. What I did to display the way I wanted is to remove the vertically stacked pages and place them on the same horizontal line. See below...

  • Horizontal menu with Vertical axis there too

    Hello

    I have a horizontal menu that works great except for two things:

    1. I want to scroll slowly when users have their cursor over or vertically beside her, but faster when they get it vertically or the cursor is on the object. So I think that if I use the FLF property that would work.

    2. the chart that scrolls horizontally Gets a little wonky at the place that is the 0 point (x and y) of the movieclip. As she slowly slips, it wobbles as it is slow to redraw.

    Below is the script of the object. Everything works except the if then statement with the FLF info and speed near the bottom. The menu is placed at x =-50 and y = 460 and it is 3155 pixels pixels x 102 wide maximum.

    Thank you!

    onClipEvent (load)
    {
    Overview = 400;
    Speed = 1/200;

    }
    onClipEvent (enterFrame)
    {
    var distance = overview - _root._xmouse;
    _x +=(distance*Speed);
    If (_x > 0) _x =-1550;
    If (_x <-1550) _x = 0;
    If the speed (FLF < 200) = 1/200;
    on the other
    Speed = 1/80;
    }

    your variable (speed) must change according to the FLF mouse property. but it is changing compared to the movieclip.

    I'm not sure that's what you want. You can use _root._ymouse.

  • Vertical drop-down menus with CSS horizontal menu

    Would I want my menu to look like:
    -solid top and bottom border
    -first level centred and horizontal menu items
    -the menu items of first level at the same distance as opposed to the same widths
    -on individual lines and second-level vertical menu items

    What actually my menu looks like:
    www.vicesbyproxy.com/Staging/exp_menu_vert.html

    What's wrong:
    -do not on top and bottom border
    -second level packaging within the width of the container

    This CSS is much more complex than what I usually do. Any help would be greatly appreciated.

    The only way to go-

    http://www.Projectseven.com/products/menusystems/PMM/

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.dreamweavermx-templates.com - template Triage!
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
    ==================

    'also' wrote in message
    News:e5o4gk$28t$1@forums. Macromedia.com...
    > Would I want my menu to look like:
    > - solid edge at the top and bottom
    > - first level of menu horizontal, centered
    > - menu items from first level to equal distance as opposed to the same widths
    > - on individual lines and second-level vertical menu items
    >
    > My menu actually looks like:
    > www.vicesbyproxy.com/staging/exp_menu_vert.html
    >
    > What is the problem:
    > - don't confine top & down
    >-deuxieme level packaging within the width of the container
    >
    > This CSS is much more complex than what I usually do. Any help would be
    > appreciated.
    >

Maybe you are looking for

  • Re: Qosmio F10 - I want to spend 500 GB HARD drive

    Hello I have a Qosmio F10 with 60 GB hard drive.I want to go to 500 GB internal hard drive. Someone please tell me is compatible or I have to use an external hard drive

  • The dependency service or group could not start

    I have accidentally infected myself with a friends virus. I've deleted successfully, and virus damage was left. The biggest damage that they let me Internet, error, it says. "The dependency service or group could start" and I have internet on all my

  • Question about the installation of XP with an OEM disc and using the number of CoA HP

    Hello I have a DC5100SFF that I bought refurbished last year, and it came not with all drives. It comes with windows XP pro and has the CoA sticker with the activation code.  It also has "HP" written on it. I thought to wipe the hard drive and reinst

  • How to remove cryptowall ransomware?

    so during my internship, I was on a stage for several days, help a charity I.T. problems. When using from their desktop a Notepad document opens when I reach the windows desktop, after further research I found it open the attachment "Bill" a maliciou

  • Migration of Cisco WLC 5508 to 5520

    Hi all I need to migrate cisco 5508 to 5520 wlc. This Cisco 5508 WLC is in production, it is possible, I can import this 5508 configuration file and export again 5520. Please provide the steps to follow while making the migration.