Undecided Question

How to modify the sub menu ?
When i click in the main menu on a menu-item it pull down and i see the sub menu. How can i change the apparency of that sub menu-item meaning visual like the color ,height weight... Only for the sub menu-items in my main menu.
Tags:
  • 0 Interesting!
  • Hits: 234
  • Expires in: Expired
Current Answers to this Question (1) :

Answers:

  • If the dropdown is using "ul" and "li" tags -- Find the "li" tag for the dropdown.  Get the class for the "ul" that the "li" is in.  Let's say the class is "foo".  In your stylesheet add this:

    ul.foo li { opacity:0.6;filter:alpha(opacity=60);}

    For some templates, they may be using div tags for the dropdown submenus.  So you would modify the div class for the submenu.


    • 07/22/2010
    • 47 Rate this answer as good
    • 47 Rate this answer as bad
    • Report as abusive/illegal