This topic has 4 replies, 2 voices, and was last updated 9 years, 1 months ago ago by Jack Richardson
How do I change the configuration so that when you highlight the text, it is black instead of red? I assume this is in the CSS code?
Hello,
Please provide us with a link to your site and specify color of what text you want to change.
Best regards,
Jack Richardson.
I want to change
1. When you take the mouse and highlight the text I want it to be BLACK background with white font.
2. I want all the hover links to be black when you hover. Right now on the widget at the bottom of the home page when you hover on the links it shows up as red, other links are showing as black without issue though.
Hello,
Add the following css code in the custom.css file:
::selection {
background-color: #000;
}
a:hover {
color: #000 !important;
}
To create custom.css you need rename default.custom.css to custom.css in wp-content/themes/blanco directory via FTP and enable it in Blanco – Theme Settings, tick “Enable Custom CSS file”.
Best regards,
Jack Richardson.
You must be logged in to reply to this topic.Log in/Sign up