Hey there, I've encountered an issue with my separator:
#menu li:not(:first-child):before {
content: " | ";
}
Despite this code working, the first li item isn't being separated like the others. This is the current output I'm getting:
test1 test2 | test3 | test4
Can anyone guide me on how to resolve this problem?