<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>THE MOLITOR FORUMS &#187; Topic: FAQ - Zoom HTML not working in Chrome</title>
		<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome</link>
		<description>THE MOLITOR FORUMS &#187; Topic: FAQ - Zoom HTML not working in Chrome</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 07:54:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/zoom-html-not-working-under-the-latest-google-chrome" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "FAQ - Zoom HTML not working in Chrome"</title>
			<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome#post-25156</link>
			<pubDate>Fri, 29 Nov 2013 09:32:40 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25156@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Unfortunately I'm not able to troubleshoot since you've both made customizations to the theme and applied the update manually. If you have issues, my best suggestion is to update the core theme, which now has these updates applied.</p>
<p>You can grab the updated version from your downloads page on ThemeForest.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>xdeers on "FAQ - Zoom HTML not working in Chrome"</title>
			<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome#post-25133</link>
			<pubDate>Thu, 28 Nov 2013 00:32:20 +0000</pubDate>
			<dc:creator>xdeers</dc:creator>
			<guid isPermaLink="false">25133@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>I made ​​changes to the file scripts.js but the result is that I can't see any more in all the browsers</p>
<p>link: <a href="http://www.alterrazzo.com/en" rel="nofollow">http://www.alterrazzo.com/en</a></p>
<p>Thanks<br />
Ricky
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "FAQ - Zoom HTML not working in Chrome"</title>
			<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome#post-24969</link>
			<pubDate>Mon, 25 Nov 2013 10:39:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">24969@http://www.themolitor.com/forums/</guid>
			<description><p>You bet! :-)
</p></description>
		</item>
		<item>
			<title>Graficdesign on "FAQ - Zoom HTML not working in Chrome"</title>
			<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome#post-24944</link>
			<pubDate>Sat, 23 Nov 2013 08:05:43 +0000</pubDate>
			<dc:creator>Graficdesign</dc:creator>
			<guid isPermaLink="false">24944@http://www.themolitor.com/forums/</guid>
			<description><p>Dear Chris, Thanks a lot for the very fast reply. That fixes the issue...great!!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "FAQ - Zoom HTML not working in Chrome"</title>
			<link>http://www.themolitor.com/forums/topic/zoom-html-not-working-under-the-latest-google-chrome#post-24779</link>
			<pubDate>Tue, 19 Nov 2013 10:54:46 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">24779@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>A recent Google Chrome update broke the loading animation script. Here's the fix...</p>
<ol>
<li>Open script.js</li>
<li>Add the following on line 145...<br />
<pre><code>var chromeBrowser = /chrom(e&#124;ium)/.test(navigator.userAgent.toLowerCase());</code></pre>
</li>
<li>After the above edit, change the following on line 201 from this...<br />
<pre><code>html.activity({segments: 12, width:5.5, space: 6, length: 13, color: &#039;#fff&#039;});</code></pre>
<p>...to this...<br />
<pre><code>if(!chromeBrowser){
html.activity({segments: 12, width:5.5, space: 6, length: 13, color: &#039;#fff&#039;});
}</code></pre>
</li>
<li>After the above edit, change the following on line 211 from this...<br />
<pre><code>html.activity(false);</code></pre>
<p>...to this...</p>
<pre><code>if(!chromeBrowser){
html.activity(false);
}</code></pre>
</li>
<li>After the above edit, change the following on line 561 from this...<br />
<pre><code>thumb.activity({color:&#34;#ffffff&#34;,segments: 12,width:2, length:3,space: 1}).find(&#039;img&#039;).css({visibility:&#34;hidden&#34;});</code></pre>
<p>...to this...</p>
<pre><code>if(!chromeBrowser){
thumb.activity({color:&#34;#ffffff&#34;,segments: 12,width:2, length:3,space: 1}).find(&#039;img&#039;).css({visibility:&#34;hidden&#34;});
}</code></pre>
</li>
<li>After the above edit, change the following on lines 579-581 from this...<br />
<pre><code>loading.activity(false).find(&#039;img&#039;).css({visibility:&#34;visible&#34;}).hide().fadeIn(300,function(){
	loading.next(&#34;.thumb&#34;).loadMe();
});</code></pre>
<p>...to this...<br />
<pre><code>if(!chromeBrowser){
loading.activity(false);
}
loading.find(&#039;img&#039;).css({visibility:&#34;visible&#34;}).hide().fadeIn(300,function(){
	loading.next(&#34;.thumb&#34;).loadMe();
});</code></pre>
</li>
</ol>
<p>Let me know if that fixes the issue for you.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>

	</channel>
</rss>
