Changing hover colors
-
I have the olsen theme. I’d like to change the all the hover colors to this one: #9BC4E2. Is there a way to change everything from the default gold color simultaneously? I’m new to CSS.
The blog I need help with is: (visible only to logged in users)
-
Hello!
If you have CSS access through a paid account (which I assume you do because of your custom domain), then your question is answered here, on the WordPress.org forums.
I’ll quote the response there:
To change the hover color, please go to your Admin Dashboard>>Appearance>>Customize>>Additional CSS.
In the Additional CSS, please copy and paste this CSS.
.site-title a:hover {
color: #FFC0CB;
}
In above, pink color is used.You can prefer any color as per your wish.But in case if you completely want to remove the hover effect then use below CSS.
.site-title a:hover {
color: inherit;
}I hope this is what you were looking for!
-
- The topic ‘Changing hover colors’ is closed to new replies.