Archived topic
I can't figure out how to change the color on the "Kontakt os" button
3 replies · Started by Kasper on January 4, 2023
Button is located in upper right corner. I am able to change it under global colors but is it possible to change it individually?
Thanks
Kasper
Hi there,
go to Customizer > Additional CSS and look for this CSS:
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a {
color: var(--accent);
border: 3px;
border-style: solid;
line-height: 36px;
border-radius: 2px;
margin-left: 20px;
transition: all 0.6s ease 0s;
}
See this line:
color: var(--accent);
Either:
a. Chang the --accent for a different color variable name from your Global Colors
or
b. swap the color for a hex color eg. color: #ff0000;
Thank you David
Once again flawless support.
/Kasper
Glad to be of help!