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

  1. #1

    Default CSS Drop Down Meni

    I an re doing a website and working on a drop down menu. If works fine in
    Firefox, but not IE. I'm using css and a java script to get the IE part
    working. Any help would be great, the link is below

    [url]http://www.mawson.com/street/courses.html[/url]


    CKH00 Guest

  2. Similar Questions and Discussions

    1. Drop down with help
      I need help fast. I have a website that needs to be done soon. The problem is that my drop down menu is not working properly. The dropdown menu...
    2. drop down
      Hi there, just wondering, is there any way to fix the characters in a drop down menu in a specific number, for example, I've a drop down with a...
    3. Change option in second drop down box based on selectionof first drop down box
      Change option in second drop down box based on selection of first drop down box. Hi, I am trying to figure out how to make a selection in 1...
    4. Drop cap
      Is it possible to do drop caps in Freehand? Can see anything about it in the 'Using Freehand 10' book.
    5. Help Please ASP with a drop down box...
      Steve wrote: This has nothing to do with ASP. You should ask this question on a client-side scripting group such as .scripting.* or any group...
  3. #2

    Default Re: CSS Drop Down Menu

    Interesting. Try this in your JS file instead:

    sfHover = function() { // fly-out menus
    var sfEls = document.getElementById("sidebar").getElementsByTa gName("LI");
    for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
    this.className+=" sfhover";
    }
    sfEls[i].onmouseout=function() {
    this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    }
    }
    }
    if (window.attachEvent) window.attachEvent("onload", sfHover);

    mzanime.com Guest

  4. #3

    Default Re: CSS Drop Down Menu

    Thanks, but I got it figured out. Another forum helped me out. I didn't have the UL id'ed
    CKH00 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