I'm currently working on customizing the menu of my WordPress theme to display a different color for the active page name.
Although my CSS code works well for all page names except the current one:
.navbar-nav li a {
font-family: georgia;
font-color: #e7a0c0;
background-color: #e7a0c0;
}
This is how it appears now. I want "About Me" to have a pink background instead of grey and the rest to have white backgrounds. Strangely, I am unable to change the text color even though I can modify the font and other properties.