Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
9363 Переглядів

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
10418
Website customization Вирішено
1
квіт. 24
3998
1
лют. 23
4036
0
жовт. 21
3053
3
жовт. 20
5486