Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
9346 Vistas

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
Descartar
Mejor respuesta

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
Descartar
Autor

Thanks :)

Mejor respuesta

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


Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
may 25
10407
1
abr 24
3932
1
feb 23
3958
0
oct 21
3048
3
oct 20
5479