I’m trying to use CSS to hide the list item “news” on the menu.
http://alexandriafilm.simpletix.com/Event/24/AIR/
something like
ul#menu li *(only 2nd instance)*
{
display:none;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In this case:
#menu ul a:nth-child(2){display:none}Here is more info: http://www.w3schools.com/cssref/sel_nth-child.asp