Hi css menu guru need a css menu without javascript can anyone help me to find out

Discussion in 'CSS' started by Subikar, May 10, 2008.

  1. #1
    Hi Laat three days I am searching of mamboo pure css menu no javascript should be there but I am not able to find out that type of menu in net. Can any one help me get this type of menu in net which should be look like the

    core-media.org

    Just check the menu of this website.

    Thanks in advance,
    Subikar
     
    Subikar, May 10, 2008 IP
  2. X.Homer.X

    X.Homer.X Peon

    Messages:
    290
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    X.Homer.X, May 10, 2008 IP
  3. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I'll add Sons of Suckerfish to the list:
    http://www.htmldog.com/articles/suckerfish/dropdowns/

    Only problem with that one is it's not IE7 friendly if you take the JS out (like you want). GIve IE7
    #nav li:hover {
    position: relative; (or, you can use other triggers like visibility: visible; )
    z-index: something here; (like 100 or whatever... not really needed for a shallow menu)
    }

    The Stu Nichols' menus are completely Javascript-free by using IE conditional comments to fool IE6 into hovering (the only reason you need JS in a menu is for IE6 to hover).

    Another thing to remember is that no drop-down is completely accessible. Keyboarders will either need some JS to make the dropdowns work on :focus (they do not in any CSS menus), OR even better, since not everyone has JS, make sure each main button can be clicked to take a user to a page which has the sub-links available to everyone (teh googles, keyboarders, etc).
     
    Stomme poes, May 13, 2008 IP