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

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129523</guid>
					<title><![CDATA[Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129523</link>
					<pubDate>Tue, 21 Oct 2014 22:09:07 +0000</pubDate>
					<dc:creator>Anja L</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,<br />
for some reason when I put a background pic in the content band (blank &#8211; no container) it makes a huge difference regarding the image section that is displayed, depending if its with parallax effect or not. How can I integrate a background pic, with parallax effect but without zooming and loosing quality because of that? It should be displayed exactly as a normal background pic regarding with, only with parallax effect.<br />
Thanks much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129528</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129528</link>
					<pubDate>Tue, 21 Oct 2014 22:11:32 +0000</pubDate>
					<dc:creator>Anja L</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129788</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-129788</link>
					<pubDate>Wed, 22 Oct 2014 09:30:10 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Anja,</p>
<p>To fix the parallax, You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
.x-content-band.bg-image {
    background-size:contain !important;
}
</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-131548</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-131548</link>
					<pubDate>Fri, 24 Oct 2014 15:17:16 +0000</pubDate>
					<dc:creator>Anja L</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-131632</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-131632</link>
					<pubDate>Fri, 24 Oct 2014 17:12:16 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Anja,</p>
<p>The above given CSS will force the background to remain inside the content band, however you can use following CSS code instead, which will show the original size of the image:</p>
<pre><code>.x-content-band.bg-image {
   -webkit-background-size: auto !important;
   background-size: auto !important;
}
</code></pre>
<p>To use images with parallax, you can try using the images of double height of the content band. </p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-133625</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-133625</link>
					<pubDate>Tue, 28 Oct 2014 11:30:06 +0000</pubDate>
					<dc:creator>Anja L</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-133739</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-133739</link>
					<pubDate>Tue, 28 Oct 2014 14:39:27 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Anja,</p>
<p>By default your background-position is set to 50% 50%, but then as soon it loads, it is set to 50% 14px. So the jump comes from the vertical position changing from centered to calculated. You can try using following CSS code to avoid this:</p>
<pre><code>.x-content-band.bg-image.parallax {
   background-position: 50% 0px;
}
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-134446</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-134446</link>
					<pubDate>Wed, 29 Oct 2014 15:13:44 +0000</pubDate>
					<dc:creator>Anja L</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks! </p>
<p>Just in case other people have the same problem, it worked with </p>
<pre><code>.x-content-band.bg-image.parallax {
   background-position: 50% 0px !important;
}</code></pre>
<p>🙂 </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-134709</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-134709</link>
					<pubDate>Wed, 29 Oct 2014 23:03:11 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Anja,</p>
<p>Glad you&#8217;ve sorted it out. Just for the background color problem, you can fix it by adding custom CSS:</p>
<pre><code>.x-content-band {
border-top: none !important;
}</code></pre>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-160663</guid>
					<title><![CDATA[Reply To: Parallax pics zoom]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-pics-zoom/#post-160663</link>
					<pubDate>Mon, 08 Dec 2014 19:56:05 +0000</pubDate>
					<dc:creator>captsalamander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I had the same problem and so I used the &#8220;contain&#8221; CSS above. However, the image appears a bit too high, leaving a white space in the bottom of the content band (see <a href="http://sigmastatus.com/assessment-2/" rel="nofollow">http://sigmastatus.com/assessment-2/</a>.</p>
<p>Earlier I tried using a vertical position CSS but that messed up the parallax in Chrome and Firefox.</p>
<p>Any way to get the image to position itself right below the menu bar? The image actually begins at the top of the guy&#8217;s hat.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

