Hi,
I’m trying to make some modifications to Business Consulting 3 demo. With multiple css files and how dense they are, I’m having trouble locating the css to change things. In this particular case, I just want to change the color of the nav-links.
When I go into the theme.css and search for nav-links, I don’t see any that set the color. Where is this color coming from?
@media (min-width: 992px) {
#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li > a,
#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li > a {
color: #444;
}
#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li:hover > a,
#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li:hover > a {
color: #111;
}
}
So you can add that to custom.css to replace the original one.