• Resolved deadceasar

    (@deadceasar)


    this may be old news for some, but new for me, so bear with me.

    i want to have my archive list act as a vertical ‘pop out’ menu when you hover over the link “archives”. Example: https://meyerweb.com/eric/css/edge/menus/demo/css

    i can get as far as hiding the list, but can’t seem to figure out how to reveal it upon hovering. i’m worried that my php is set up incorrectly, but just don’t see it.

    <div id="menu">
    <li><h3><a href="<?php wp_get_archives('monthly','12','option'); ?>">Archives</a></h3>
    </li>
    </div>

    if this looks ok, then maybe my css is off. here’s the hiding/revealing stuff:

    div#menu li > a
    {display: none;}
    div#menu li:hover > a
    {display: block;}

    take a look:
    https://mcgrew.mancavemojo.com

    any clues?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter deadceasar

    (@deadceasar)

    oh, and any IE (Explorer) users need not try to view my site. It’s not well supported. ??

    Thread Starter deadceasar

    (@deadceasar)

    nevermind. i figured out a way to add a script to do the job. the lack of response is disconcerting, though.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘help with verticle menus’ is closed to new replies.