If you are using WordPress for your website, you may want to change the color of the links on your website when someone uses the mouse to hover over it. Just add this a:hover WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to change the color of links when hovered over in WordPress.
/** * Change link color on hover * * @author WPSnacks.com * @link https://www.wpsnacks.com */ a:hover { color: #000000; }
Just replace #000000 with the hex color code that you want to use for links. Your theme may likely already have the link color hover listed in the CSS stylesheet so you may want to search the stylesheet for that first and if it does then you can update the hex color code to the one you want. Hope this helps with your WordPress problem, enjoy.
Leave a Reply