<?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>Parallax Background Speed &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/parallax-background-speed/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/parallax-background-speed/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 02:12:20 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170622</guid>
					<title><![CDATA[Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170622</link>
					<pubDate>Wed, 24 Dec 2014 10:03:39 +0000</pubDate>
					<dc:creator>Matthew</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;ll start this off by saying, &#8220;WOW!&#8221; This is the best theme that I have ever seen. ever. </p>
<p>I&#8217;ve been tinkering with the Visual Composer for a good time now, and I feel like I&#8217;ve come up with some pretty good ideas for my site. One of the design features that I&#8217;d like to implement is a parallax background image at the top of my home page. Though, I&#8217;ve already added it to the page, I&#8217;m not entirely pleased with the speed at which the image moves.</p>
<p>My question: Where can I find the source file that would allow me to edit that function. I&#8217;ve looked all over, yet I&#8217;ve had no luck.</p>
<p>Thank!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170623</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170623</link>
					<pubDate>Wed, 24 Dec 2014 10:05:22 +0000</pubDate>
					<dc:creator>Matthew</dc:creator>

					<description>
						<![CDATA[
						<p><strong>EDIT:</strong> Alternatively, what code would I need to add to the custom js field in the row settings?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170644</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-170644</link>
					<pubDate>Wed, 24 Dec 2014 11:30:53 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in!</p>
<p>To change the speed, you can simply use following jQuery code under <strong>Custom &gt; JavaScript</strong> in the Customizer:</p>
<pre><code>jQuery(document).ready(function() {

  //
  // Attach parallax handlers.
  //

  if (Modernizr.touch) {
    jQuery(&#039;.x-content-band.bg-image.parallax, .x-content-band.bg-pattern.parallax&#039;).css(&#039;background-attachment&#039;, &#039;scroll&#039;);
  } else {
    jQuery(&#039;.x-content-band.bg-image.parallax&#039;).each(function() {
       var id = jQuery(this).attr(&#039;id&#039;);
       jQuery(&#039;#&#039; + id + &quot;.parallax&quot;).parallaxContentBand(&#039;50%&#039;, 0.3);
    });
    jQuery(&#039;.x-content-band.bg-pattern.parallax&#039;).each(function() {
       var id = jQuery(this).attr(&#039;id&#039;);
       jQuery(&#039;#&#039; + id + &quot;.parallax&quot;).parallaxContentBand(&#039;50%&#039;, 0.5);
    });
  }

});
</code></pre>
<p>By changing <strong>0.3</strong> and <strong>0.5</strong> to your desired speed from <strong>0</strong> to <strong>0.9</strong> (default speed is 0.1 and 0.3).</p>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-171776</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-171776</link>
					<pubDate>Sat, 27 Dec 2014 16:00:30 +0000</pubDate>
					<dc:creator>Matthew</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! This is exactly what I needed. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-171784</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-171784</link>
					<pubDate>Sat, 27 Dec 2014 16:09:43 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome! contact us again anytime!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-285107</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-285107</link>
					<pubDate>Thu, 28 May 2015 22:20:25 +0000</pubDate>
					<dc:creator>ledzep100</dc:creator>

					<description>
						<![CDATA[
						<p>Does the above jQuery still work to adjust the speed of parallax images? It worked for me before, it&#8217;s extremely useful, but for some reason on a new site with the current wordpress/theme changing the numbers doesn&#8217;t seem to effect the speed. I ask also because this thread specifically states there is no control over parallax adjustment (maybe I&#8217;m misunderstanding the other thread).<br />
Other thread: <a href="https://community.theme.co//forums/topic/customize-parallax-effect/" rel="nofollow">https://community.theme.co//forums/topic/customize-parallax-effect/</a> </p>
<p>My site: <a href="http://heretohelplearning.com/wholesale/" rel="nofollow">http://heretohelplearning.com/wholesale/</a></p>
<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-285515</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-285515</link>
					<pubDate>Fri, 29 May 2015 06:52:27 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>You can try the code we have suggested in our previous reply: <a href="https://community.theme.co//forums/topic/parallax-background-speed/#post-170644" rel="nofollow">https://community.theme.co//forums/topic/parallax-background-speed/#post-170644</a></p>
<p>This should work as it overrides the parallax js script.</p>
<p>Please let us know then.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-291648</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-291648</link>
					<pubDate>Wed, 03 Jun 2015 21:17:18 +0000</pubDate>
					<dc:creator>ledzep100</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you for the reply!<br />
Yes, that is the js script I was referring to. I can see it being output at the bottom of the page in the Developer Tools in Chrome, but alas, fiddling with the numbers doesn&#8217;t seem to change the speed. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-background-speed/#post-292020</guid>
					<title><![CDATA[Reply To: Parallax Background Speed]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-background-speed/#post-292020</link>
					<pubDate>Thu, 04 Jun 2015 03:43:13 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Please update the code into:</p>
<pre><code>jQuery(document).ready(function() {

  //
  // Attach parallax handlers.
  //

  if (Modernizr.touch) {
    jQuery(&#039;.x-section.bg-image.parallax, .x-section.bg-pattern.parallax&#039;).css(&#039;background-attachment&#039;, &#039;scroll&#039;);
  } else {
    jQuery(&#039;.x-section.bg-image.parallax&#039;).each(function() {
       var id = jQuery(this).attr(&#039;id&#039;);
       jQuery(&#039;#&#039; + id + &quot;.parallax&quot;).parallaxContentBand(&#039;50%&#039;, &#039;.9px&#039;);
    });
    jQuery(&#039;.x-section.bg-pattern.parallax&#039;).each(function() {
       var id = jQuery(this).attr(&#039;id&#039;);
       jQuery(&#039;#&#039; + id + &quot;.parallax&quot;).parallaxContentBand(&#039;50%&#039;, &#039;.9px&#039;);
    });
  }

});</code></pre>
<p>Let us know how it goes, Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

