Trouble to identify a CSS Element

Iam trying to modify a single element (just the color of the text) but I could not identify it.

I attached the image


of the element (it’s the first one of the left filter).

I have a basic knowledge of the CSS and made few customization but I cannot find it, or better, I am pretty sure I am missing something in the syntax.

Photos/screenshots of an error can be helpful, but it also helps to provide the complete code. Posting the code helps us help you better!

When you enter a code, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Thank you for your answer, but i am not sure about what code i should enter because i cannot find the class about that element.

I can’t read the piece of code you have highlighted from the picture. If you want us to read any of that code you will have to post it in the forum. If it’s not relevant to your enquiry delete the picture.

you can right click on the element in the inspector and choose “copy selector”, that selector will be unique for that element

here the result of “copy selector”

.wcpt-search-filter-option-set > div:nth-child(1) > label:nth-child(1) > span:nth-child(2) > div:nth-child(1) > span:nth-child(1)

that selector will target exactly that element, so if you want to change only that element you can use that selector

Ok, I will try and let you know