<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How can I replicate the hover effect on element grid thumbnails for full-width rows?]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">On this web page there are (under "Magazin") two thumbnails next to each other (element grid thumbnails) and I want to replicate the same hover effect for the full-width thumbnail above. How can I do that (with custom CSS)? <a href="https://aaarea.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://aaarea.com</a></p>
<p dir="auto">I had to use background image with text on top, because the "featured image" is always square and too tall if used full-width.</p>
<p dir="auto">I managed to get the darkening of the background going, but not the zoom. How can I achieve that?</p>
]]></description><link>https://laythemeforum.com/topic/7312/how-can-i-replicate-the-hover-effect-on-element-grid-thumbnails-for-full-width-rows</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 20:07:47 GMT</lastBuildDate><atom:link href="https://laythemeforum.com/topic/7312.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 01 Nov 2021 09:47:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How can I replicate the hover effect on element grid thumbnails for full-width rows? on Mon, 01 Nov 2021 20:15:28 GMT]]></title><description><![CDATA[<p dir="auto"><em>Awesome <a class="plugin-mentions-user plugin-mentions-a" href="/user/thomasmaier">@<bdi>thomasmaier</bdi></a> thanks for posting!!</em> 🌝</p>
]]></description><link>https://laythemeforum.com/post/27093</link><guid isPermaLink="true">https://laythemeforum.com/post/27093</guid><dc:creator><![CDATA[Richard]]></dc:creator><pubDate>Mon, 01 Nov 2021 20:15:28 GMT</pubDate></item><item><title><![CDATA[Reply to How can I replicate the hover effect on element grid thumbnails for full-width rows? on Mon, 01 Nov 2021 10:37:18 GMT]]></title><description><![CDATA[<p dir="auto">I found it out!</p>
<pre><code>.background-image img {
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.background-image img:hover {
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
}
</code></pre>
]]></description><link>https://laythemeforum.com/post/27081</link><guid isPermaLink="true">https://laythemeforum.com/post/27081</guid><dc:creator><![CDATA[thomasmaier]]></dc:creator><pubDate>Mon, 01 Nov 2021 10:37:18 GMT</pubDate></item></channel></rss>