January 03rd, 2024

How to change link hover colour in WordPress?



Like (0) Comments (1)



1 Comments Add Your Comment


Akshat Gupta
3 years ago Selected
If you want to change the Link Hover Color, then you can also use CSS code for this. You can use the below CSS code.

a:hover {
color: #FF0000;
text-decoration: underline;
}

This code will change the color of the link to Red and the text will appear underline when the visitor hovers over the link. Use your preferred color code instead of #FF0000.
Like (0) Reply

Post a Comment

To leave a comment, please Login or Register