Okay
  Public Ticket #614283
Change color of one menu item
Closed

Comments

  • Kasper started the conversation

    Hi guys

    I can't seem to change the color of the last menu item (TILMELD).

    I wan't it to be orange and have tried some different css codes:

    .orangemenu a {

    color:#f47a07!important;

    }

    #menu-item-45 {

    color:#f47a07!important;

    }

    I added orangemenu to the last menu item (appearance > menus > CSS class

  • MPdev replied

    When using Firebug in Firefox, you can easily trace down the container and its classes/id\'s to style. If the “!important” no works, you might need to add some classes from higher level containers.
    header#top nav ul li#menu-item-45 > a:link, header#top nav ul li#menu-item-45 > a:visited, header#top nav ul li#menu-item-45 > a:hover, header#top nav ul li#menu-item-45 > a:active {

    color: orange !important;

    }


  • Kasper replied

    Thank you very much! ;-)