跳至內容
選單
此問題已被標幟
2 回覆
9375 瀏覽次數

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
10433
1
4月 24
4049
1
2月 23
4105
0
10月 21
3063
3
10月 20
5497