Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
9352 Представления

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? =)


Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
мая 25
10415
1
апр. 24
3951
1
февр. 23
3984
0
окт. 21
3051
3
окт. 20
5482