Home › Forums › Iconic One Pro Support › How to Change Logo font color & mouse hover color › Reply To: How to Change Logo font color & mouse hover color
 June 2, 2020 at 10:15 am #6044 
Keymaster
You can paste the following in Customizer -> Additional CSS:
For text based logo:
.site-header h1 a {
    color: #0099ff;
}
a.site-description {
    color: #0099ff;
}For hover
.site-header h1 a:hover {
    color: #ffffff;
}
.top-header .site-description:hover {
color: #ffffff;
}Change the hex colors as per your choice.
Note: hover code updated
