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.
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!
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 !