Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
9358 Weergaven

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


Avatar
Annuleer
Beste antwoord

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.

Avatar
Annuleer
Auteur

Thanks :)

Beste antwoord

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


Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
1
mei 25
10418
1
apr. 24
3976
1
feb. 23
4013
0
okt. 21
3051
3
okt. 20
5484