Hello,
So I have a CSS code that changes the colour of links when hovered over, however it is interfering with other link types on my site such as my pagination buttons are being interfered with. My code is as below
Is there a way to direct the CSS to specific links ?
Thanks,
P
So I have a CSS code that changes the colour of links when hovered over, however it is interfering with other link types on my site such as my pagination buttons are being interfered with. My code is as below
Code:
/* Start Link Hover Glow */ a:hover { text-decoration: none; color: #b40300; text-shadow: -1px 1px -1px #b40300, 1px -1px -1px #b40300; -webkit-transition: 400ms linear 0s; -moz-transition: 400ms linear 0s; -o-transition: 400ms linear 0s; transition: 400ms linear 0s; outline: 0 none; } /* End Link Hover Glow */
Thanks,
P
Comment