Header text links color not working on some

I have a site where I am using a nav modal and on some pages, the text is white (when it’s supposed to be blue) on just some of the links? I tried using !important but then when I hover over the text remains blue.

This is happening more on the internal pages, like https://paragontech.net/#services

Hi @lorchme,

Thanks for reaching out.
It seems the cache is the reason behind your issue. I went ahead and cleared the and get the exact color set in the Text.

Thanks

It is still not working. I think it might be the active link. Because there are multiple links on the same page. Again I couldn’t isolate the CSS to change it.
So If i change the attached image from white to a color then when I hover, the text on the hover will not change back to white.

Hello @lorchme,

The colour is not rendering due to an aggressive cache issue. For the quick fix please add this custom CSS code under Pro—>Theme option —>CSS

.e203-7.x-menu .x-anchor[class*="active"] .x-anchor-text-primary{
color:rgb(26 25 47) !important;
}

.e203-7.x-menu .x-anchor:hover .x-anchor-text-primary{
color:#ffffff !important;
}

The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.

Hope it helps.
Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.