Need to change the Colour of each menu heading. - Wordpress
问题 I have a website: http://cancersurvivorshipireland.com/cancersurvivorshipireland.com/wordpress/ (temp address) but I have all the menu topics in the header the same colour, they are all green. I am trying to get them all different colours. eg. Home = green, News = red, Blog = yellow. but have absolutely no idea how to do it? 回答1: You can do this with CSS nth child selector as follows: #menu-default li:nth-child(1) a { color: green; } #menu-default li:nth-child(2) a { color: red; } #menu