How can I change the navigation menu color in Debut theme?

Hello to all of the Shopify community :-),

I need some help with coding on the debut theme → I would like to change the color of only one thing on the navigation menu to green, with a little green box around it but I just can’t seem to make it happen.

I tried to quibble with the code but nothing to do, the color does not change. I’m having trouble identifying my menu or placing my code incorrectly on my CSS stylesheet.

website now.png

In advance, a big thank you to whoever can help me with this!

Dinand van Kampen

Hi @Dinandvk
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css

#SiteNav > li:last-child {
background: green;
}
#SiteNav > li:last-child a{
color: white;
}