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 {
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
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;
}
Thank you very much! ;-)