Archived topic
Change color lining in menu button
3 replies · Started by Jarno on January 15, 2022
I want to the change the color of the line on the contact button in my menu/navigation: https://gyazo.com/9815d3ecaf1173ad34d880bc222cce15
Where can i adjust the color?
Thanks
Jarno
Hi there,
Any chance you can link us to the site in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Here you go:
The color is set by this code in Additional CS field in the customizer:
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a {
color: #ffffff;
border: 2px solid #5ce6e6;
line-height: 38px;
padding: 0px 18px 2px 18px;
margin-left: 24px;
transition: all 0.6s ease 0s;
}
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a:hover {
color: #ffffff;
border: 2px solid #ffffff;
}
Let me know if this helps :)