跳至内容
菜单
此问题已终结
2 回复
9357 查看

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


形象
丢弃
最佳答案

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.

形象
丢弃
编写者

Thanks :)

最佳答案

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


形象
丢弃
相关帖文 回复 查看 活动
1
5月 25
10418
1
4月 24
3976
1
2月 23
4013
0
10月 21
3051
3
10月 20
5484