Comment on Release Notes for Release 0.8.2.1- - 0.8.2.4

  1. Unfortunately I can't turn on Javascript selectively. My favorite for this and a bunch of other menus - the fanfic filters get incredibly long - would be using the css hover abilities - but those are troublesome in IE browsers, yet totally sweet in Firefox and family and Opera.

    Sample menu displaying on hover - html part

    
    
    
    

    Sample menu - css part


    div.dm{display:inline; position:absolute; top:1px; left:64px; margin:0px; padding:0px;}
    div:hover.dm{ width:157px; }
    span.dmt{width:157px; display:block;}
    div:hover.dm ul.dm {display:block; top:64px; left:64px;}
    ul.dm {list-style-type:square; list-style-position:outside; margin:0px; padding:0px; padding-left:15px; display:none; border-bottom:2px solid red; border-left:2px solid green; border-top:2px solid green; border-right:2px solid red;}
    Comment Actions
    1. Looks like the code tag gets ignored.

      Hackneyed sample menu html part:

      [div class="dm"]
      [span class="dmt"]
      [a href="" title="Menu Title" charset="utf-8" hreflang="en" tabindex="1" type="text/html" lang="en"]
      I'm the menu title
      [/a]
      [/span]

      [ul class="dm"]
      [li][a href="item 1" charset="utf-8"]I'm the first menu item[/a][/li]
      [li][a href="item 2" charset="utf-8"]I'm the second menu item[/a][/li]
      [li][a href="item 3" charset="utf-8"]I'm the third menu item[/a][/li]
      [li][a href="item 4" charset="utf-8"]I'm the fourth menu item[/a][/li]
      [/ul]

      [/div]

      Comment Actions