0

I am customizing the WordPress twentyten them and am trying to change the font color of only one menu item. I would greatly appreciate it if someone could point me in the right direction.

I have tried the following change to the child theme style.css with no success:

#menu-item-35{ font-color:#F2CE52; }
4

1 回答 1

0

您必须使用伪类:first-child

例如:

*{color:#fff;}

.menu li:first-child{
color:#000;
}

关于这个伪类的信息:

http://www.w3schools.com/cssref/sel_firstchild.asp

于 2012-02-24T21:01:08.317 回答