Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
9354 Vizualizări

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


Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor

Thanks :)

Cel mai bun răspuns

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


Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
mai 25
10416
1
apr. 24
3963
1
feb. 23
3996
0
oct. 21
3051
3
oct. 20
5482