Fold Down Menu Help Please

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Fold Down Menu Help Please

    Hi

    I am using a older version of Dreamweaver and was wondering if it was because
    I have a older version or what it is. I have tryed to gets scripts for a fold
    down menu tree but when I put the script where they are supposed to be they get
    scrambled up with all these yellow squares on the screen and writing. Take a
    look at this site and where it says general questions click on a question and
    you will see how it behaves. I am looking for a script or program that will
    allow me to do in Dreamweaver. Any help would be appreciated!
    [url]http://www.akc.org/canine_legislation/paws_QA.cfm?page=2[/url]

    Thetoothfairy Guest

  2. Similar Questions and Discussions

    1. Fold Over ad
      How do you create a "fold over" ad like this one? http://www2.canoe.com/promo/exemple-creatifs/romeojuliette/dhtml.html How big is the flash...
    2. My page goes beyond the fold, but no scrollbar? :S
      Hi, I have made a website in Flex, located at http://www.theplaygrounds.co.uk/The_Playground.swf . Now this site is just a simple portfolio,...
    3. Page sizes in multiple fold docs
      A little of topic, and posted in adobe illustrator forum (shouldv'e known better)... I know this is horribly basic, but I've got 2 different...
    4. Creating a Tri-Fold Brochure
      Hi. I'm in a real hurry to create a Tri-Fold Brochure for a customer. have Freehand MX 11. Does anyone have any quick and simple templates could...
    5. ANNC: PVII Menu Magic II Multi-Level Menu Tutorial.
      Hello All, Menu Magic II by Project Seven is probably the coolest menu creation tool there is for Dreamweaver. While PVII chose to provide a...
  3. #2

    Default Re: Fold Down Menu Help Please

    I looked at the site and clicked on the General Question but did not see an
    error or any yellow boxes.

    If you're asking about how they did the the hide and view the additional
    information they're useing JAVA. It's a smiple script and you should be able to
    find some usefull scripts at hotscripts.com.

    Tom
    440MUSIC.COM IM Radio
    Beyond The Reach Of Satellite

    tomc-440music Guest

  4. #3

    Default Re: Fold Down Menu Help Please

    Hi Again

    When you click on one of the general questions on that page and it is set to
    hide all.... the answer to the question appears... I am looking for a script
    that does just this.... I have tryed a few but when I put them in dreamweaver
    the scripts are all over the place. :(

    Thetoothfairy Guest

  5. #4

    Default Re: Fold Down Menu Help Please

    Hi Again

    When you click on one of the general questions on that page and it is set to
    hide all.... the answer to the question appears... I am looking for a script
    that does just this.... I have tryed a few but when I put them in dreamweaver
    the scripts are all over the place. :(

    Thetoothfairy Guest

  6. #5

    Default Re: Fold Down Menu Help Please

    Here is another site that has what I am looking for.

    [url]http://petsunlimited.com/cfdocs/pets/breedhelp.html[/url]

    Is there such script for this?

    Many thanks!
    Thetoothfairy Guest

  7. #6

    Default Re: Fold Down Menu Help Please

    copy this script in above head:
    <script>
    function showhide(id){
    if (document.getElementById){
    obj = document.getElementById(id);
    if (obj.style.display == "none"){
    obj.style.display = "";
    } else {
    obj.style.display = "none";
    }
    }
    }
    </script>

    Then this is the action they use to do what theyve done:

    <TR><TD><Font size=3><a href="#" onclick="showhide('script1');
    return(false);">blah de blah de blah</a>
    </TD></TR>
    <TR><TD><div style="display: none;" id="script1">
    blah blah blah
    </div> </TD></TR>

    where Ive put blah blah put the words you want to use.

    I hope thats right - give it a go!

    A1designer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139