How to Make DropDowns in Navigation Menu Fit

cs4
http://ahy4life.com/test2/index.php
The client wishes to have nine dropdowns in the navigation menu at top. Only eight are ostensibly visible just now, even tho they exist in the code. While I can change the width of each menu item, how can I make "Meet the Owners" and "Events & Promos" appear on two lines. For example:
Events &
Promos
Please disregard the improper alignment of the dropdowns; I will correct those once this other issue is addressed.
Thanks, -Biggs

hello,
Looks like you have some significan code problems in your page.  These need to fixed before you can address the difficulities you describe.
Martin
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fahy4life.com%2Ftest2%2Findex.php

Similar Messages

  • How to make a Previous/Next Menu

    Hi there.  This is my first time posting in the Adobe forums so please be patient if I don't do things correctly.
    I currently have the Adobe Web Design CS5 package and all the programs that come with it, but my question is specifically about Dreamweaver.  My computer is a Macbook with the latest operating system as far as I know.
    I've been trying to create a next/previous menu for parts of my own personal website.  It's http://www.aidenart.com . If you click on the link to the Concept Art page you should see a bunch of image thumbnails that act as links.  Click on any one of those images and you're suppose to see the full image from the thumbnail in a whole new page.  On the pages with the full images I would like to include, at the bottom, a jump menu so that a visitor can pick any of the pages that they might want to see (I already know how to do this part), but I would also like to include buttons which allow the visitor to visit the next image in the list and also the previous one in the list.  You know, a previous and next menu.  I've seen other websites using those kinds of buttons so I know it's possible somehow.
    By looking at the source code of some websites and doing a bit of research on my own, I think this can be done using javascript of some kind.  Maybe by using an "onClick" behaviour or something.  I looked at a few different web help sites, including W3 Schools, and I still haven't found any clear cut explanations on how to make a previous/next menu.  If someone could just show me the basic code for making a simple one that actual works then I could probably work from that.
    I would prefer it if I didn't have to bother with the dreamweaver extenstions section because most things listed in the exchange are something you have to pay for.  And for those of you who think I should just make individual links on each page, please keep in mind that I'll want to add more pages in the future.  Most likely a lot of pages.  I also want to be able to make previous/next menus for the comics section of my website for when I have more comic pages available, so I really need to know how to do this.
    I hope that was enough information for you guys.  I can try to provide code if you guys want although I'm not sure how that would help solve my current problem.

    Only way to do pagination effectively requires either a database or XML files containing your data.  Neither way is really for a beginner based on my experience with both.  And based on the size of your library right now, pagination isn't what you really need.
    If it is going to be an image gallery you could look into the php Gallery script if you have a mySQL database ( http://gallery.menalto.com/ ).  But for simple solutions.
    For even smaller solutions you can look to JQuery solutions.  They require minimal amounts of coding, mostly just file inclusions.
    http://galleria.aino.se/
    http://fancybox.net/
    http://www.twospy.com/galleriffic/#1
    It's just about finding one that meets your needs and gives you the ability to customize as you see fit.

  • How to make a left side menu?

    I need to know how to make a left side menu for my site,  can anyone help me? I am new to macromedia dreamweaver MX. Thanks

    I prefer to use CSS styled lists for menus.  Very easy to edit later.  Web friendly for people and search engines.
    EXAMPLE:
    http://alt-web.com/TEMPLATES/3-col-fixed-layout.shtml
    Several FREE CSS menu systems here.
    CSS Express Drop-Down Menus  (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    CSS Tab Designer creates 60+ CSS Styled Button and Tab Menus  (download)
    http://www.highdots.com/css-tab-designer/
    List-O-Rama  (DW Extension)
    http://www.dmxzone.com/go?5618
    CSS  Menu Maker (On-Line Menu Generator)
    http://www.cssmenumaker.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How to make chooser drop down menu, Example i want choices 1 or 2 or 3 from the drop down menu or Location , Egypt , USA , Canda

    how to make chooser drop down menu, Example i want choices 1 or 2 or 3 from the drop down menu or Location , Egypt , USA , Canda

    Hello,
    Where do you want to insert it in Muse. Do you want to add this in Muse Form widget then you can use the widget mentioned in the link below.
    Forms+ Bundle Widget – Widgets.Mu
    If you want to insert it anywhere else in Muse and if you have the HTML codes for that then you can insert its codes in page from Object > Insert HTML.
    You may also require to use some java scripts to make them working as expected.
    How to Make JavaScript Dropdown List - YouTube
    Regards
    Vivek

  • Flash cs3: how to make moving/scrolling photo menu left and right?

    http://media.moma.org/subsites/2008/miro/flashsite/index.html
    - click continue, then relative size link
    How can I do this with lash cs3: how to make moving/scrolling
    photo menu left and right?
    When you move left and right and paintings move. and when you
    click on a painting, you see the the title and it links to another
    page on the site.

    scene_mc start at x = -550... x wide is 2164 px
    now I have this and its working...
    navL_mc.addEventListener(MouseEvent.MOUSE_OVER, navL_Over);
    navL_mc.addEventListener(MouseEvent.MOUSE_OUT, navL_Out);
    function navL_Over(e:MouseEvent){
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
                                  navL_mc.addEventListener(Event.ENTER_FRAME, runL);
    function runL(e:Event):void{
              if(scena_mc.x == 0){
                                  scena_mc.x == 0;
              else if(scena_mc.x <= -10){
                                  scena_mc.x += 10;
    function navL_Out(e:MouseEvent){
              navL_mc.removeEventListener(Event.ENTER_FRAME, runL);
    navR_mc.addEventListener(MouseEvent.MOUSE_OVER, navR_Over);
    navR_mc.addEventListener(MouseEvent.MOUSE_OUT, navR_Out);
    function navR_Over(e:MouseEvent){
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
                                  navR_mc.addEventListener(Event.ENTER_FRAME, runR);
    function runR(e:Event):void{
              if(scena_mc.x == -1164){
                                  scena_mc.x == -1164;
              else if(scena_mc.x >= -1154){
                                  scena_mc.x -= 10;
    function navR_Out(e:MouseEvent){
              navR_mc.removeEventListener(Event.ENTER_FRAME, runR);

  • How to make the KM Navigation iview role based

    Hi all,
    Can someone tell me how to make the KM navigation iview role based?
    First of all, is this possible? What I am trying to achive is display certain links for a user group and certain other links for another user group.
    Please guide me.
    Ashwini.

    Hi Ashwini,
    Can someone tell me how to make the KM navigation iview role based?
    >>>>>>>>>>>>>><i>You can have a Navig. iView in your own folder..Attach this iView to a page --> page to workset --> workset to a role. SIMPLE!</i>
    <b><u>Try this:</u></b>
    Have 2 iViews, 2 pages, 2 worksets, 2 usergroups (ug1 & ug2 (<i>say</i>))..
    Also, you have to separate your news links in 2 folders (folder1 & folder2):
         <b>iView1</b> --> links from <i>folder1</i> (for user of <b>ug1</b>)
         <b>iView2</b> --> links from <i>folder2</i> (for user of <b>ug2</b>)
    Hope it helps!
    Regards,
    SK.

  • How to make top level navigation not refresh

    Hello Guys,
    I have a question concerning on my External Facing Portal, my boss wants that when I click on a tab or a link in the Top Level Navigation , to load the content in the Content Area without refreshing the whole page, What I want is that when I click on a tab or link of the Top Level Navigation , the Top Level Navigation and the MasterHead not to refresh and that the content be loaded and refreshed only in the Content Area. The only way I know to do this is by making a frameset of my page and to make the masterhead and toplevel navigation a frame and the detalied navigation a frame and the content area a frame, and in the links to put the target property to the name of the content area frame, but I don't know if this is possible to do in the portal, I see that all is embedded and I don't know how to make a frameset like this in the portal.
    Any highlights to solve this will sure be appreciated.
    Thanks
    Rewarding points will be given.
    Luis

    Hi,
       When you are implementing External Facing Portal, i think you have used Light Framework Page.  In Light Framework Page, only one Framework has been used, so when you click on the top level navigation, the whole page will get refresh, so there is no otherway as of my knowledge.  If you use standard framework page in portal, it is possible to do (i.e. the content area only get refresh)  and the concept of your External Facing Portal is eliminated here.
    Regards,
    Venkatesh. K
    /* Points are Welcome */

  • How to Make a Line of Best Fit/Best Fit Line/Trendline in iWork Numbers '09

    I'm not sure if this is well-known or has been answered elsewhere already, but multiple Google searches have not shown this solution on how to create a line of best fit in Numbers '09 (there is another method that involves drawing a line yourself, but this is much easier and more accurate).
    I stumbled across this trying the above self-draw technique and got so excited I wanted to post the technique. So here is what you do:
    1) Type out your X and Y data
    2) Select the data and select Charts, then select the Scatter Plot
    3) Open up Inspector and select the Chart tab
    4) Select the "Series" tab below the picture of the Scatter Plot and the "Chart Colors..." button
    5) At the bottom of the Inspector window, open the "Advanced" arrow
    6) Select the "Trendline" tab and select the "Linear" trendline from the drop-down bar
    That's it! You can even select the options to show the line equation or the R-squared value!
    Here is a picture of the selected options and what your graph should look like (check that nice R-squared value!).
    http://i.imgur.com/AvfPv.png
    I hope this helps and hope it moves up to the top of the Google search page for this feature.

    Hi Asclepius37,
    Why not just search "trend" or "trendline" in the Numbers '09 User Guide?
    That would take you to page 149 of the guide and the article "Showing Trendlines in Charts," which lists a set of instructions very similar to those in your post.
    The Numbers '09 User Guide and the iWork Formulas and Functions User Guide are searchable pdf files, and may both be downloaded through kinks in the Help menu in Numbers. Both are excellent resources to have on hand.
    Regards,
    Barry
    PS: Searching "best fit" will return zero results, but "best" or "best-fit" will get you to the same article.
    B

  • How to make menus for navigation?

    I am coming from the Articulate world to Captivate. For those
    not familiar with Articulate, when you publish a Powerpoint file,
    it automatically creates a menu on the left with all the slide
    topics that you can skip to when clicking.
    How do I do this in Captivate? I see it is not automatic. I
    suppose the bigger question is, what is the best way to create a
    template that has functional buttons that allow me to skip to
    different modules and different slides within a module as well as
    the typical forward/back/exit buttons.
    All of the resources I see on Captivate focus on more linear
    presentations or simulations on how to fill out a form. I am trying
    to create e-learning that is not necessarily linear and allows the
    user to skip around to get the info they need.
    I am not expecting anyone to do the work for me, but I am a
    little frustrated on where to start with a solid resource on
    guiding me how to create the right navigation tools.
    Thanks.

    Hello DmltnMn
    Be welcome the community
    You would like being raised links for the created slies it
    will be able to create menu in his project lincando for each
    presentation, a good practice.
    To that be enough to go in Project> Skin> Menu and
    activate the Option Show Menu oh it is enough to create his menus
    indicating each slide.
    I wait what is this his doubt, and what it could have helped
    :)

  • How to make a keyboard navigating multiple choice list in Flash and control it through actionscript?

    i am making an rpg style game in actionscript 3.0 and i want to make a multiple choice list. I know how to make the list with buttons and how to control it. My question is, how do you make a list that can be navigated using the keyborad arrows? What i am after is being able to hit up, and down to highlight the buttons and enter to chose the button.

    You'll need to make the buttons as movieclips so that you can control which display state they are in (highlighted versus not).
    Then you need to set up a listener for the keyboard keys so that you can have the selected button change and the execute if the Enter is pressed.  Here is a basic setup for a keyboard listener that shows how to detect the three keys you mentioned...
    stage.addEventListener(KeyboardEvent.KEY_DOWN,keyIsDown);
    function keyIsDown(e:KeyboardEvent):void  {
             if (e.keyCode == Keyboard.DOWN) {
                     trace("DOWN");
             } else if (e.keyCode == Keyboard.UP) {
                     trace("UP");
             } else if (e.keyCode == Keyboard.ENTER) {
                     trace("ENTER");

  • How to make dynamical drop down menu?

    I am trying to make a drop down menu which is dynamical in dreamweaver? is there a way to do that? i am not good at programming.

    Here are links to a couple of tutorials for this:
    http://www.roscripts.com/Building_a_dynamic_drop_down_menu-216.html
    http://www.finalwebsites.com/tutorials/dynamic-navigation-list.php

  • How to make at startup script that fits spread on open

    Hi there,
    Does anyone know how to make a startup script for InD CS6 that fit spread too screen when document open?
    I've tried this and it works but I've get a dialog that says "Object is not valid":
    #targetengine "session"
    main();
    function main(){
    var myEventListener = app.eventListeners.add("afterOpen", excuteScript);
    function excuteScript(){
    var myD = app.documents[0];
    app.layoutWindows[0].zoom(ZoomOptions.FIT_SPREAD);

    Hi Jump_Over and thank's for reply.
    I'm a total newbie when it comes to scripting.
    Can you show me how you mean?
    Jonas

  • How to make a fly-out menu item checked?

    Hi,
    is there a way to make a fly-out menu item (coming from an XML list) checked - like in this example:
    by the way, I know it's been submitted as a bug already, but fyi sub-menu items (2-1 in the following example) don't work as expected:
    var xmlMenu:XML =
        <Menu>
          <MenuItem Id="item_1" Label="Item 1"/>
          <MenuItem Label="Item 2">
            <MenuItem Label="Item 2-1"/>
          <MenuItem/>
          <MenuItem Label="---"/>
          <MenuItem Label="Item 3"/>
         </Menu>;
    Thanks in advance!
    Davide

    If Harbs says nope, it's nope
    At least now I know it. Thanks!
    Davide

  • How to make dropdown menu selection create more text fields?

    I did some searching and am unable to find an answer for this. It could be because I don't know the name of what I'm trying to do (I'm a total LiveCycle Designer noob). I tried to find guides but they seem to be for newer versions of Designer (I'm using 8.2) so I'll ask here:
    I'd like specific text fields to appear after a pulldown menu option is selected (empty fields w/ the captions already filled in). How can I go about doing this?
    Thanks in advance!

    The script I see when I click on the dropdown menu in question:
    form1.#subform[0].DropDownList4::initialize - (FormCalc, client)
    form1.#subform[0].DropDownList4::enter - (FormCalc, client)
    form1.#subform[0].DropDownList4::exit - (FormCalc, client)
    form1.#subform[0].DropDownList4::calculate - (FormCalc, client)
    form1.#subform[0].DropDownList4::validate - (FormCalc, client)
    form1.#subform[0].DropDownList4::preOpen - (FormCalc, client)
    form1.#subform[0].DropDownList4::postOpen - (FormCalc, client)
    form1.#subform[0].DropDownList4::mouseEnter - (FormCalc, client)
    form1.#subform[0].DropDownList4::mouseExit - (FormCalc, client)
    form1.#subform[0].DropDownList4::change - (FormCalc, client)
    form1.#subform[0].DropDownList4::full - (FormCalc, client)
    form1.#subform[0].DropDownList4::mouseUp - (FormCalc, client)
    form1.#subform[0].DropDownList4::mouseDown - (FormCalc, client)
    form1.#subform[0].DropDownList4::click - (FormCalc, client)
    form1.#subform[0].DropDownList4::preSave - (FormCalc, client)
    form1.#subform[0].DropDownList4::postSave - (FormCalc, client)
    form1.#subform[0].DropDownList4::prePrint - (FormCalc, client)
    form1.#subform[0].DropDownList4::postPrint - (FormCalc, client)
    form1.#subform[0].DropDownList4::preSubmit:form - (FormCalc, client)
    form1.#subform[0].DropDownList4::postSubmit:form - (FormCalc, client)
    form1.#subform[0].DropDownList4::docReady - (FormCalc, client)
    form1.#subform[0].DropDownList4::docClose - (FormCalc, client)
    form1.#subform[0].DropDownList4::ready:form - (FormCalc, client)
    form1.#subform[0].DropDownList4::ready:layout - (FormCalc, client)

  • How to make your Bose QC2's fit your iPhone - or maybe any other headphones

    First off, I've read so many threads of people acting really mad that their iphone either doesn't do this or that... People are strange like that. I was even a little upset about the $200 drop, but since it happened I've moved on and I really don't mind.
    Anyways, I'm a very proud owner of an iPhone and a pair of Bose QC2's.. I love both of them. I felt bad that the QC2's didn't fit the iPhone, so I purchased the Belkin adapter. Bad choice. Imagine sitting on an airplane with that 3 inch long adapter sticking out of your iphone like an antenna, then your headphones plugged in. The two guys sitting in the row beside me were laughing - I knew they were. So I trashed the belkin adapter. It ***** anyways. Don't buy it.
    I got home and took a second look at my QC2's and thought, "what if I cut back the plastic/rubber piece so that it WOULD fit?" So I did, and not only did it look good, but it seated perfectly and it sounded GREAT!
    So here's how to do it. All you need is a new strait edge razor... (the kind you would scrape paint off a window)
    Begin cutting in very small increments. Cut strait down by pushing down through the plastic/rubber until it hits the metal. it cuts almost like butter. Go all the way around. I cut off the equivalent thickness of a 5 cent nickel. It will take you less than 5 minutes to make this happen.
    When you're done, you'll find that it fits perfectly, AND that the structural integrity of the male end is not compromised at all.
    I have a photo taken by the iphone. It's a little blurry since I don't know how to get a clear super close up, but the picture shows the results and what it looks like underneath. If anyone can host it for me, that would be great. it that's the case, I'll get out my D100 and get some very good shots of it.
    Good Luck!

    has anyone tried it?

Maybe you are looking for

  • Unable to download the data perfectly into excel sheet

    Hi Frnds, when i am trying to download the data from the output of a report into excel, some of the records(line items/rows) are getting stored in one of column of the excel sheet. Fog eg: my report outputs 500 line items. In excel after 100 rows the

  • Can't Scan to HP Photosmart C5180, but can print to it.  Why?

    How do I get my HP C5180 all in one to be an all in one printer on Leopard? I can print to it, but it says there is a communication error when I try to Scan using HP Scan Pro software. Anyone have a fix for this on my new Aluminum Intel iMac?

  • D-link 524, appletalk and printing

    hi! i am trying unsuccessfully to print via wireless d-link router to my old laserjet... my setup: powerbook g4 12" [linking via airport to:] d-link524 wireless router [ethernet connection from back of above router to:] hp laser jet 2100tn [which wor

  • Since installing firefox my emails from yahoo will not print anymore. No error message just nothing

    Since installed Firefox my emails from my yahoo will not print. There is not error message, nothing waiting to print. When I go to my AT&T emails they will still print. I will need to uninstall Firefox if you can't help me. Thanks. Pat

  • Direct Approval/Rejection buttons bid invitation

    Hi, The Direct Approval/Rejection buttons are disabbled while approving Bid in users Approval inbox. Actually I have activated wf 14500026, and the wf is only activated manually for the creator. I have added in tcode SWL1, tasks TS79007914 TS79007919