Change background color menu item

Hello, I would like to change the background color to red for the menu item “VENTES PRIVEES” .

Here is the link to the website: https://www.draegerparis.com/

Thank you in advance.

Hi @stg_herve ,

You can go to Online store → Themes → Edit code, find “main.css” file and add the below code to last bottom:

ul.main-nav li:first-child {
    background: #b41620;
    padding-left: 14px;
}

Hope this helps!

Thank you, but this also impacts other tabs. Could you please apply the background color only to the ‘VENTES PRIVEES’ tab?

Ok, @stg_herve .

You can try to update like this:

ul.main-nav>li:first-child {
    background: #b41620;
    padding-left: 14px;
}

Its works !
Thank you so much !