<?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[making project thumbnails always B&#x2F;w and colour only on mouse hover]]></title><description><![CDATA[<p dir="auto">Hi!</p>
<p dir="auto">I know Lay offers a possibility of making a project thumbnail B/W on mouse hover.<br />
However I would like to have the opposite happening:<br />
thumbnails are b/w and become colour on hover.</p>
<p dir="auto">Is this something I have to do with CCS or is there another way that I'm not seeing?</p>
<p dir="auto">Thank you:)<br />
Sara</p>
]]></description><link>https://laythemeforum.com/topic/11842/making-project-thumbnails-always-b-w-and-colour-only-on-mouse-hover</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 03:02:16 GMT</lastBuildDate><atom:link href="https://laythemeforum.com/topic/11842.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 17 Apr 2026 15:15:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to making project thumbnails always B&#x2F;w and colour only on mouse hover on Fri, 17 Apr 2026 18:17:34 GMT]]></title><description><![CDATA[<p dir="auto">Yeah that’s doable with CSS, Lay doesn’t have a built-in toggle for “reverse hover” like that.</p>
<p dir="auto">You basically just set the thumbnail to grayscale by default, then remove it on hover. Something like:</p>
<pre><code>.project-thumbnail img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.project-thumbnail img:hover {
  filter: grayscale(0%);
}
</code></pre>
<p dir="auto">You might need to adjust the class name depending on how your thumbnails are structured, but that’s the general idea.</p>
<p dir="auto">Clean effect btw, looks really nice when done right 👍</p>
]]></description><link>https://laythemeforum.com/post/46984</link><guid isPermaLink="true">https://laythemeforum.com/post/46984</guid><dc:creator><![CDATA[samfrancis]]></dc:creator><pubDate>Fri, 17 Apr 2026 18:17:34 GMT</pubDate></item></channel></rss>