Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
2 Respostas
9367 Visualizações

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
Cancelar
Melhor resposta

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

Thanks :)

Melhor resposta

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


Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
1
mai. 25
10418
1
abr. 24
4003
1
fev. 23
4042
0
out. 21
3053
3
out. 20
5486