Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
9348 Visualizzazioni

Hello All,

How can I change my website home page menu color?

I have tried this below code using JS.

if (window.location.pathname == '/'){

$('.nav-link.show, .navbar-light .navbar-nav').css('color', '#fff!important');

});

but this code is not working properly.

Please help me out of the issue.

Thanks in advance.

Riddhi


Avatar
Abbandona
Risposta migliore

Hello @Riddhi,

You can use this code,

Hello @Riddhi,


You can use this code.


Add css


.home-menu{


color:#000!important;


}


Js code


$(document).ready(function(){


if (window.location.pathname == '/'){


$('.nav-link').addClass('home-menu')


}


});


Can you please mark this as a resolved if you are satisfied with my answer.

Avatar
Abbandona
Autore

Thanks :)

Risposta migliore

thanks!! it works!!!, do you know the code for onhover color? =)


Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
mag 25
10407
1
apr 24
3939
1
feb 23
3964
0
ott 21
3048
3
ott 20
5480