Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: css menu submenu horizontal #10103
    blankcr4ckm3
    Participant

    HTML

    <ul class="nav">
       <li><a href=#><span>Main item text</span><span class="bullet"></span></a>
          <ul>
            <li><a href=#><span>Sub item text</span><span class="bullet"></span></a></li>
          </ul>
       </li>
    </ul>
    

    CSS

    ul.nav li ul { position: absolute; display: none; }
    ul.nav li { float: left; }
    ul.nav li:hover ul { display: block; }
    

    Ofcourse besides that you must style list properly.
    Here you can try how it work with bullet http://jsfiddle.net/9r4Lf/1/

Viewing 1 post (of 1 total)