When I click hover in slide-image so hover effect change but text color have to changed how to text color changed with slide-image hover effect?
.wpcp-slide-image::before {
content:"";
position: absolute;
top:0px;
left: 0px;
opacity: 0.7 !important;
background-color: #ff613c;
width: 100%;
height: 0%;
transition: height 0.15s ease-in;
}
.wpcp-slide-image:hover::before{
height: 100% !important;
}
you should set the z-index of the image on -1, so the background will be behind the text.
CSS:
HTML: