Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
9373 Lượt xem

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


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

Ảnh đại diện
Huỷ bỏ
Tác giả

Thanks :)

Câu trả lời hay nhất

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


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 5 25
10423
1
thg 4 24
4029
1
thg 2 23
4085
0
thg 10 21
3056
3
thg 10 20
5494