Hi there,
within the portfolio grid with the featured images I would like to see that the image hover effect has the same appearance like the overlay on a single image.
Please point me into the correct direction on how to achieve this.
I was giving the css sepia-filter a triy, but the there is no color control.
Thanks in advance
Hey ykblue!
Please add following code to Quick CSS
.grid-entry .inner-entry:hover img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
Best regards,
Yigit
Thanks Yigit.
I think there are still some lines missing for the state of hovering out. It is now not smooth at all, it just cuts off very rough.
And – sorry if I was not clear enough in my initial question – I would like to change the grayscale filter to the colored overlay #5b3e1e I have on the front page images at the bottom of the front page.
Thanks again for your support.
Best regards,
ykblue
Hey!
Please add following code to Quick CSS as well
.grid-entry .inner-entry img {
-webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
It would not be easily possible to change background color.
Best regards,
Yigit
Hi Yigit,
your suggestion works fine, thanks for your support!
Best regards
ykblue