<?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 on mobile | ipad &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 03:01:28 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-274015</guid>
					<title><![CDATA[Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-274015</link>
					<pubDate>Fri, 15 May 2015 01:30:04 +0000</pubDate>
					<dc:creator>gabhungtd</dc:creator>

					<description>
						<![CDATA[
						<p>Hi guys, </p>
<p>I am currently developing a site for a client and have used your parallax on a number of pages and it looks awesome on desktop.<br />
However on mobile and ipad the SOS background graphic is not responsive:<br />
christydev.hungdesign.com.au<br />
Can you please help me to fix it. I would rather not have it at all than the weird crop.<br />
Thank you!<br />
gab</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-274097</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-274097</link>
					<pubDate>Fri, 15 May 2015 04:02:03 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in.</p>
<p>Parallax is intentionally disabled for mobile for performance purposes.</p>
<p>This is the coding responsible for that.</p>
<p>And it&#8217;s set to  <code>$(element).css(&#039;background-attachment&#039;, &#039;scroll&#039;);</code> when the devices is touch enabled. It prevents parallax effect.</p>
<pre><code>xData.api.map(&#039;content_band&#039;, function(element, params) {
  jQuery(window).load(function() {

    if ( params.parallax ) {
      if ( Modernizr.touch ) {
        $(element).css(&#039;background-attachment&#039;, &#039;scroll&#039;);
      } else {
        if ( params.type === &#039;image&#039;   ) speed = 0.1;
        if ( params.type === &#039;pattern&#039; ) speed = 0.3;
        if ( speed ) $(element).parallaxContentBand(&#039;50%&#039;, speed);
      }
    }

    if ( params.type === &#039;video&#039; ) {
      var BV = new jQuery.BigVideo();
      BV.init();
      if ( Modernizr.touch ) {
        BV.show(params.poster);
      } else {
        BV.show(params.video, { ambient : true });
      }
    }

  });
});</code></pre>
<p>If you still wish to implement that, then you must edit this file wp-content\plugins\x-shortcodes\js\dist\site\x-shortcodes-body.min.js</p>
<p>Replace this code :</p>
<p><code>n.parallax&amp;&amp;(Modernizr.touch?t(e).css(&quot;background-attachment&quot;,&quot;scroll&quot;)</code></p>
<p>by this one :</p>
<p><code>n.parallax&amp;&amp;(false?t(e).css(&quot;background-attachment&quot;,&quot;scroll&quot;)</code></p>
<p>Save and upload your edited file.</p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-275679</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-275679</link>
					<pubDate>Mon, 18 May 2015 03:41:54 +0000</pubDate>
					<dc:creator>gabhungtd</dc:creator>

					<description>
						<![CDATA[
						<p>Hi and thanks for your response. I tried a number of things, but am confused why the parallax effect on the homepage<br />
<a href="http://christydev.hungdesign.com.au" rel="nofollow">http://christydev.hungdesign.com.au</a> resizes weirdly on touch devices. Can you help me to replace it with a different background image for touch devices? Or alternatively is there a way to make the background image used display smaller?<br />
Thanking you in advance.  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-275681</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-275681</link>
					<pubDate>Mon, 18 May 2015 03:57:58 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>To replace your background image on mobile or smaller screens, please add the following css code in the customizer, <strong>Appearance &gt; Customize &gt; Custom &gt; CSS</strong></p>
<pre><code>@media (max-width: 979px){
    div#x-content-band-2 {
        background-image: url(&#039;http://placehold.it/1200x650&#039;) !important;
    }
}</code></pre>
<p>The background image size is set to <code>cover</code>. It means to scale the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in view within the background positioning area. Having it this way, you can avoid having blank spaces surrounding your background image. </p>
<p>For more details, please check <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp" rel="nofollow">http://www.w3schools.com/cssref/css3_pr_background-size.asp</a></p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-776250</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-776250</link>
					<pubDate>Tue, 02 Feb 2016 16:26:12 +0000</pubDate>
					<dc:creator>petteromdal</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I have the same problem and want to enable parallax on tablet/phone, but i couldnt find the file: x-shortcodes-body.min.js. because i don´t have any folder which says &#8220;x-shortcodes&#8221;. Could you please help.</p>
<p>P</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-776738</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-776738</link>
					<pubDate>Tue, 02 Feb 2016 21:38:11 +0000</pubDate>
					<dc:creator>Jade</dc:creator>

					<description>
						<![CDATA[
						<p>Hi P,</p>
<p>The suggestion about uses an old version of the theme. Currently, X detects touch devices and turns the parallax effect by default. We always love to get feedback so we will write down a note that some people might want to keep it activated on a tablet or mobile and we might add it in a future release if there is enough demand for it.</p>
<p>You can try to add this code in the CSS customizer:</p>
<pre><code>@media (max-width: 979px) {
    .touch .x-content-band.bg-image.parallax, .touch  .x-content-band.bg-pattern.parallax {
        background-attachment: initial !important;
    }
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777404</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777404</link>
					<pubDate>Wed, 03 Feb 2016 07:26:29 +0000</pubDate>
					<dc:creator>petteromdal</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again and thanks for fast feedback. But this code unfortunately did not work. I have read several other forum posts and think I have tried that code before. The parallax has always worked when I press the smartphone view in cornerstone, but not on the actual smartphone. Do you have any other possible solutions I may try?</p>
<p>P</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777673</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777673</link>
					<pubDate>Wed, 03 Feb 2016 10:51:16 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi P,</p>
<p>The provided code is old, kindly use this instead:</p>
<pre><code>@media (max-width: 979px) {
    .touch .x-content-band.bg-image.parallax, .touch .x-content-band.bg-pattern.parallax,
    .touchevents .x-content-band.bg-image.parallax, .touchevents .x-content-band.bg-pattern.parallax {
        background-attachment: scroll !important;
    }
}
</code></pre>
<p>In regard to your concern regarding parallax on smartphone view in Cornerstone, Cornerstone smartphone view is only a temporary view of how your website will look in mobile devices. It&#8217;s still your same desktop browser. Some of the functionality is handled by devices themselves so in order to see exactly how a website look and work <strong>functionally</strong>, it&#8217;s best to test on actual mobile devices. Parallax has been disabled in mobiles due to the certain reasons. You can find more about it here: <a href="http://stackoverflow.com/a/23420490/3107931" rel="nofollow">http://stackoverflow.com/a/23420490/3107931</a></p>
<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777818</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-777818</link>
					<pubDate>Wed, 03 Feb 2016 12:53:16 +0000</pubDate>
					<dc:creator>petteromdal</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you again, but this code don´t work either. I tried to put it in the &#8220;Body CSS Class(es)&#8221; in WP and also tried to put it in the custom css in the customizer. I understand the purpose of why it have been disabled, but the appearance is not optimally with fixed images on smartphone.</p>
<p>P</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-778057</guid>
					<title><![CDATA[Reply To: Parallax on mobile | ipad]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-on-mobile-ipad/#post-778057</link>
					<pubDate>Wed, 03 Feb 2016 15:15:48 +0000</pubDate>
					<dc:creator>Rupok</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for updating. The above code should work fine. Kindly clear your browser&#8217;s cache before testing. If you are testing on higher resolution than 979px, you can try changing the max-width value.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

