Hello,
I have one unsolved mystery that I cannot solve on my own.
In nav menu, the text color is light grey, when I hover, it appears white.
I want the text to show always white without hover.
I inspected it million times.. Added color: #FFF !important like everywhere but the text still stays as light grey.
Can you help me solve this?
Thanks in advance.
my website:
Www.kurzon.cz
Please, make sure if you screenshot my website, there will not be showing my website URL or the name of the website... I want to keep it in secret because it is not launched yet. Thank you for understanding.
Please use this css.
li#main-menu-item-3251 {
color:#fff;
}
nothing has changed.
Please try to hover on the text and you will see that the text will show white.
With no hover it is still light grey which I dont want... I want it white.
Please remove your custom css from that element .You have applied the important attribute and this is causing issues in your site .
I would recommend you to avoid the use of important attribute .
We cannot help you unless you correct your css
Please take a look again, I removed all !important attribute from Custom CSS in Nav menu.
The text color is still grey. :(
my website:
Www.kurzon.cz
Please, make sure if you screenshot my website, there will not be showing my website URL or the name of the website... I want to keep it in secret because it is not launched yet. Thank you for understanding.
Try adding the given css :
li#main-menu-item-3191 a {
padding: 5px 18px !important;
color: white !important;
font-weight: bold;
opacity: 1 !important;
}