I have a question that may seem silly, but I'm trying to understand a specific CSS styling issue. I want to add an image targeting a particular li item.
Currently, the code adds the image after all the li items:
.menuStyling li:after{
content: url('../img/arrowActive.png');
}
What would be the most effective way to target only one li item?