Hi @pierremichaux,
Yes absolutely! You can use Custom CSS to solve your issue.
/* Product background */
.prod-cat-contemporary-hover-div:hover {
background: rgba(0,0,255,0.6);
}
/* Product Details Button */
.prod-cat-contemporary-hover-button {
background: rgba(255,0,0,0.6) !important;
}
/* Product Details Button Hovered state */
.prod-cat-contemporary-hover-button:hover {
background: rgba(0,255,0,0.6) !important;
}
Perfect, what about the text color? I cannot find the CSS…(Text = Détails)
Last thing, below the price on the same page I got a border of 2 or 3px with a green color, can I change it too?
Many many thx!
Pierre
Hi @pierremichaux
No problem! And yes you can change those elements using additional CSS as well:
/* Details button text color */
.prod-cat-contemporary-hover-button {
color: red !important;
}
/* Details button text color - hovered state */
.prod-cat-contemporary-hover-button:hover {
color: blue !important;
}
/* Bottom green border */
.upcp-thumb-item {
border-bottom: 3px solid pink;
}
Great, many thanks for your support
You’re welcome @pierremichaux!