Hover change text on nav to italic and different color css

Viewed 22

I there! I would like some help with my squarespace site to change the text in the nav bar when hovering. Style and color.

Here is an example of a site where I've seen this - vvorkroom.com

Thanks so much!

kim

1 Answers

Maybe you can try this

.nav > nav-links > a:hover {
    color : (1, 1, 122, 1);
 }

note: change the class with your own.

Related