Hey! I’ve just disabled the 2nd image on hover (in the product page) and now I’d like to move the text (price/name of the item) inside the card and show them on hover with a color too as in this page: https://www.olaroche.com/sold
Please go to Online Store > Themes > Edit Code, find the base.css file and add the following code to the bottom:
.card.card--standard.card--media {
position: relative;
}
.card__content:has(.card__heading.h5){
display: none;
position: absolute;
bottom: 80px;
padding-left: 110px; // change this to move the text
height: 500px;
padding-top: 400px; // change this to move the text
}
.card.card--standard.card--media .card__inner.color-background-2.gradient.ratio {
background-color: antiquewhite; //change hover color here
}
.card.card--standard.card--media:hover .card__content:has(.card__heading.h5) {
display: initial;
}
That’s perfect! The only problem is that the name would stay on black. I’ve tried to change it in the code but affect only the color of the price and not the name of the item!! How can I change that?