• Well… if you notice, there is a big orange ‘Download’ button at the right most side in the top navigation menu of www.ads-software.com site. I want to do that in Twenty Eleven theme. That means in the menu there should be a menu item/button which would be stand out from the other items/buttons. Can anyone help me to accomplish this?

    Thanks in advance.

Viewing 1 replies (of 1 total)
  • each menu tab has its own unique css class;
    in a custom menu, for example: .menu-item-1221
    in a standard pages menu, for example: .page-item-2

    to find these, either use a free tool such as firebug; or look into the html code of your page in the browser.

    possible styles:

    li.menu-item-1221 a { background: orange; }
    li.menu-item-1221 a:hover { background: palegreen!important; }

    or,resp:

    li.page-item-2 a { background: orange; }
    li.page-item-2 a:hover { background: palegreen!important; }

Viewing 1 replies (of 1 total)
  • The topic ‘[Twenty Eleven] How can I put an orange button in navigation menu?’ is closed to new replies.