I've encountered an issue with a list menu on one of our recently developed websites.
The problem lies in using li:before to display a | before each item in the menu. Here is the CSS code I am using:
#menu li:first-child:before {
content:"";
}
#menu li:before {
content: " | ";
}
Interestingly, this method works perfectly on a site I created a while back: . However, it does not seem to be working on the current project I am working on:
Any suggestions or insights would be greatly appreciated.