:first-child applying to all links [closed]

Your code:

ul#menu-menu-1 > li,a:first  {
margin-left: 0px;
}

You need to apply the first-child to the list element, and not to the link. You should also not have a comma. Comma indicates a new selection.

Try this:

ul#menu-menu-1 > li:first-child a{
maegin-left:0px;
}

*first-child does not work in ie8 and earlier.