Can't change the hover colour in navbar-nav-li-a

Thanks, Norm, it would be good and interesting to know what happened there, what was the problem. Thanks again, and thanks for fixing the file.

  • I wonder this as the file you fixed is now old, I have already updated the site a few times since I first sent the zip to you about a week ago and would like to fix this in the latest project file.
1 Like

Update:

I guess this is difficult to explain simple by Norm, so I tried this (not recommended by anyone, I did it on my own risk):

  1. I opened the project file (.bloc) in a text editor:

  2. Searched for the text “navbar-nav li a:hover”

  3. When that text was found in the text editor – 3 instances (italic below) were found on one line! (as Norm described it too me this had somehow mutated in the project file):

.navbar-nav li a:hover{color:var(–swatch-var-7312)!important;}.blocsapp-special-menu blocsnav:hover{color:rgba(255,146,0,0.50)!important;}.navbar-nav li a:hover:hover{color:#FEFFFF!important;}.navbar-nav li a:hover:hover:hover{color:#FEFFFF!important;}

  1. Deleted 2 of them, bold below

.navbar-nav li a:hover{color:var(–swatch-var-7312)!important;}.blocsapp-special-menu blocsnav:hover{color:rgba(255,146,0,0.50)!important;}.navbar-nav li a:hover:hover{color:#FEFFFF!important;}.navbar-nav li a:hover:hover:hover{color:#FEFFFF!important;}

  1. Saved the file in the text editor, holding my breath and tried to open the .bloc file again in blocs, and it seems to work, and the menu hover color seems to work now.

Btw, I do not recommend anyone to do this as it’s probably easy to destroy the project file.