How can I change a single element in the main menu to have a different color (using a theme template)?
We want to change just a single line of text in the drop down menu to have a different color compared to the rest. The rest are white, we want “ПРОТЕИНОВИ” to be in pink.
Could you give me a script to do that? Thanks in advance!
Hi @VIDAS
Try adding below code to end of theme.css file
@media only screen and (min-width: 1024px) {
.submenu.submenu--items-3 li.submenu-item:nth-child(2) ul li.submenu-item:nth-child(5) a {
color: #ea3a86;
}
}
If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!