<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>WordPress.com Forums &#187; Topic: Change image on mouse rollover</title>
		<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover</link>
		<description>WordPress.com Forums &#187; Topic: Change image on mouse rollover</description>
		<language>en</language>
		<pubDate>Mon, 20 May 2013 08:15:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/change-image-on-mouse-rollover" rel="self" type="application/rss+xml" />

		<item>
			<title>svijayak on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611313</link>
			<pubDate>Tue, 24 May 2011 20:04:44 +0000</pubDate>
			<dc:creator>svijayak</dc:creator>
			<guid isPermaLink="false">611313@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>devlog: When I checked the html editor, I didn't have any those "break" tags ( &#60; br /&#62; )  and tried your dirty little hack of </p>
<p><code>a br {display: none;}</code></p>
<p>which does the work. </p>
<p>Thanks for your help.
</p>
]]></description>
					</item>
		<item>
			<title>svijayak on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611289</link>
			<pubDate>Tue, 24 May 2011 19:29:52 +0000</pubDate>
			<dc:creator>svijayak</dc:creator>
			<guid isPermaLink="false">611289@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Actually I should have mentioned it in the original question itself...my bad.</p>
<p>The result of the forum search topic all discuss about images of static areas of the pages like Menu etc. my requirement was on the dynamic content, where the pics are different for each post. The current code I've in place addresses the need of each post. All I've to do is to give links to 2 images. It gets it working and I just need to get that rollover image not change its position. </p>
<p>But if there is something specific in those discussions that I need to pay attention to, let me know.</p>
<p>Thanks for pointing it out.
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611287</link>
			<pubDate>Tue, 24 May 2011 19:28:19 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">611287@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Damn software... where it reads:</p>
<blockquote><p>
Notice the "<br />
" tag in between the "&#60;img&#62;" ...
</p></blockquote>
<p>should read:</p>
<p>Notice the "&#60; br /&#62;" (with no space) tag in between the "&#60;img&#62;" ...
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611283</link>
			<pubDate>Tue, 24 May 2011 19:26:22 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">611283@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Sviyajak,</p>
<p>Your markup shows this:</p>
<pre><code>&lt;a&gt;
&lt;br /&gt;
&lt;img width=&quot;333&quot; height=&quot;500&quot; src=&quot;http://farm4.static.flickr.com/3203/5754190922_c286d36764.jpg&quot; class=&quot;nohover&quot; /&gt;
&lt;br /&gt;
&lt;img width=&quot;333&quot; height=&quot;500&quot; src=&quot;http://farm6.static.flickr.com/5186/5754190102_871717fb24.jpg&quot; class=&quot;hover&quot; /&gt;
&lt;br /&gt;
&lt;/a&gt;</code></pre>
<p>Notice the "<br />" tag in between the "&#60;img&#62;" tags and at the end of the second "img" tag.  If you are adding them, that's your problem.  If you are using the visual editor, then wp is adding them and you'll need to take them out yourself.  To do this, click on the HTML tab (next to Visual) find and remove the "br" tags from your markup.  Save.</p>
<p>If they're still being added by the software, a dirty workaround would be adding this to your CSS:</p>
<pre><code>a br {display: none;}</code></pre>
<p>See if that works.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611267</link>
			<pubDate>Tue, 24 May 2011 19:15:12 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">611267@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Does this help? Results of a forum search <a href="http://en.forums.wordpress.com/topic/image-rollovers-in-wordpresscom?replies=8#post-528530" rel="nofollow">http://en.forums.wordpress.com/topic/image-rollovers-in-wordpresscom?replies=8#post-528530</a>
</p>
]]></description>
					</item>
		<item>
			<title>svijayak on "Change image on mouse rollover"</title>
			<link>http://en.forums.wordpress.com/topic/change-image-on-mouse-rollover#post-611255</link>
			<pubDate>Tue, 24 May 2011 18:52:42 +0000</pubDate>
			<dc:creator>svijayak</dc:creator>
			<guid isPermaLink="false">611255@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>I have a photo blog hosted by wordpress. my requirement was to show an image on mouse over event (rollover...whatever that is called). After some searching, found that blogs hosted by wordpress aren't allowed to use javascript, so with the help of some folks managed to get a small set of CSS code working to get the image rollover.</p>
<p>Code added to the template:</p>
<pre><code>img.nohover {
border:0
}
img.hover {
border:0;
display:none
}
a:hover img.hover {
display:inline
}
a:hover img.nohover {
display:none
}</code></pre>
<p>Code for each post which needs an image displayed when mouse-rollover-event happens:</p>
<pre><code>&lt; a href=&quot;link.html&quot;&gt;
&lt;img alt=&quot;image&quot; src=&quot;images/image.png&quot; class=&quot;nohover&quot; /&gt;
&lt;img alt=&quot;imagehover&quot; src=&quot;images/image.png&quot; class=&quot;hover&quot; /&gt;
&lt;/a&gt;</code></pre>
<p>On blogger platform this works perfect. Here is an <a href="http://svijayak.blogspot.com/2011/05/image-rollover-test.html">example page</a> showing it working.</p>
<p>On a wordpress platform it works, but the resulting mouse over image changes its position. An example of that is <a href="http://kaddisudhi.com/2011/05/24/golden-window/">here</a>.</p>
<p>Any ideas on how to go about fixing this? I'm new to CSS, but will take any help I can get on this.</p>
<p>Thanks,<br />
-Sudhi.
</p>
]]></description>
					</item>

	</channel>
</rss>
