#btnNext {
border: 0px solid #FFF ;
box-shadow: none ;
filter: brightness(0) invert(1) ;
height: 20px ;
opacity: .3 ;
padding: 0px ;
visibility: visible ;
position: none ;
bottom: 0px ;
right: 15px ;
z-index: 999 ;
}
#btnPrevious {
border: 0px solid #FFF ;
box-shadow: none ;
filter: brightness(0) invert(1) ;
height: 20px ;
opacity: .3 ;
padding: 5px ;
visibility: visible ;
position: none ;
bottom: 30px ;
left: 30px ;
z-index: 999 ;
}
#btnPrevious:hover,
#btnNext:hover{
opacity: 1 ;
transition: all .3s ease-in-out ;
}
This the code I've come up with I'm proud of the opacity change and all but I want the color to change along with the opacity while hovering. I hope you get what I mean but that's what I want to happen. I have tried adding background-color: and color: under the hover tab but they don't seem to work I think I have to remove the filter but I'm not sure so please help me with this I request.