View Single Post
  #2 (permalink)  
Old Apr 9th, 2007, 10:36
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: question about a type of css menu

Just use a background image of an upwards pointing arrow on the selected item. You would be able to use nested lists here, so you'll have something more like:

Code: Select all
<div class="topmenu">
  <ul>
    <li>Tech</li>
    <li class="showArrow">Sci</li>
  </ul>
</div>
<div class="secnav">
  <ul>
    <li>This</li>
    <li>And that</li>
  </ul>
</div>
Reply With Quote