<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Image move when hover &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/image-move-when-hover/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/image-move-when-hover/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 23:08:46 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228338</guid>
					<title><![CDATA[Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228338</link>
					<pubDate>Mon, 16 Mar 2015 15:50:39 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						<p>I got another reall small question, probably not a big issue !</p>
<p>I applied custom CSS to my website than I found here on the forum after some research just to make disapear the chain Icon on image hover, change color and opacity of the hover. This is the whole code I think : </p>
<pre><code>
}
.entry-thumb:before {
    content: none !important;
}

.entry-thumb:before {
    background-color: transparent;
    content: &quot;&quot;;
}

.entry-thumb {
    background-color: 
#FFFFFF;
  
}
a.entry-thumb:hover img {
opacity:  0.7;
filter: alpha(opacity=1);
zoom: 1;

}
</code></pre>
<p>Problem is, the image seem to move a bit to the right when I put my cursor on it&#8230; Any way to fix that ? Is it a chrome issue ? Or my code ? </p>
<p>Thanks a lot !!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228340</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228340</link>
					<pubDate>Mon, 16 Mar 2015 15:50:56 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228509</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-228509</link>
					<pubDate>Mon, 16 Mar 2015 18:51:21 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in.</p>
<p>Try to add this in your Customizer&#8217;s Custom CSS:</p>
<pre><code>.entry-thumb img{
transition:none;
-webkit-transition:none;
}</code></pre>
<p>Hope it helps.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230419</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230419</link>
					<pubDate>Wed, 18 Mar 2015 19:37:22 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						<p>It do work, but there is no fading anymore. Any way to keep the fading and only fix the problem of the image moving ?</p>
<p>Thanks 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230499</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230499</link>
					<pubDate>Wed, 18 Mar 2015 21:06:31 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>It seems like you&#8217;ve sorted it out. on hover i am getting the fading effect. Here is the code if you still need it:</p>
<pre><code>.entry-thumb img {
-o-transition: opacity 0.75s ease;
-moz-transition: opacity 0.75s ease;
-webkit-transition: opacity 0.75s ease;
transition: opacity 0.75s ease;
}</code></pre>
<p>Hope this helps!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230531</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230531</link>
					<pubDate>Wed, 18 Mar 2015 21:35:49 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						<p>So I added this code : </p>
<pre><code>
.entry-thumb img{
transition:none;
-webkit-transition:none;
}
</code></pre>
<p>results : no fading effect.<br />
so right after this code, I added yours : </p>
<pre><code>
.entry-thumb img {
-o-transition: opacity 0.75s ease;
-moz-transition: opacity 0.75s ease;
-webkit-transition: opacity 0.75s ease;
transition: opacity 0.75s ease;
}
</code></pre>
<p>and the images start to « expand » or changing size again when hovering effect&#8230; So its really the effect who&#8217;s messing up all this&#8230; As soon I add the <strong>fading effect</strong>, the image size change&#8230; any clue ?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230626</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230626</link>
					<pubDate>Wed, 18 Mar 2015 23:29:20 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I don&#8217;t really see the issue about change size when hovering with effects. Would you mind providing a video recording of what you&#8217;re getting?</p>
<p>But, I can see that clarity changes when hovering with effect. Example, the image with typewriter shows grid lines when hovered. It&#8217;s not re-sized, but the depth and clarity changes because the typewriter stays on same size.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230715</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230715</link>
					<pubDate>Thu, 19 Mar 2015 02:23:48 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						<p><a href="http://leloft.tv/wp-content/uploads/2015/03/IMG_6157.mov" rel="nofollow">http://leloft.tv/wp-content/uploads/2015/03/IMG_6157.mov</a> small video, 1mb only, .MOV, want me to convert it or its fine ? You&#8217;ll see the « size change » and coming back to normal, it only happen when the hover fade.</p>
<p>Thanks ! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230834</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-230834</link>
					<pubDate>Thu, 19 Mar 2015 06:37:25 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thank you for the video, I&#8217;ve tried to fix it, But just like the first post it seems that the transition property is the only thing causing this. And it seems that the issue is only occurring on chrome, so this could be an browser compatibility. What you could do for now is to disable the transition only on chrome.</p>
<p><code>.entry-thumb img {-webkit-transition:none;}</code></p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/image-move-when-hover/#post-231332</guid>
					<title><![CDATA[Reply To: Image move when hover]]></title>
					<link>https://theme.co/archive/forums/topic/image-move-when-hover/#post-231332</link>
					<pubDate>Thu, 19 Mar 2015 20:08:09 +0000</pubDate>
					<dc:creator>alexacos</dc:creator>

					<description>
						<![CDATA[
						<p>Its quite strange, I just wanted the hover to be the same than when lightbox are used. No icon, and a small white fading in&#8230; I dont get this problem when I create lightbox, I just get a smooth fade, and nothing move! But as soon I try to get this on my fornt page, it don&#8217;t work properly. Since the effect is the same on the lightbox than I want my font page thumbnail is there any code who may force the image and hover inside the box, or I dont know.. Like I say, I dont get any problem with any other hover, juste my front page one&#8217;s&#8230; I hope disabling transition on chrome is not the only possibility because like I said, lightbox transition do work fine for me !</p>
<p>Thanks again!!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

