<?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 issue with Navbar fixed right. &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/feed/</link>
		<description></description>
		<lastBuildDate>Wed, 15 Oct 2025 09:47:25 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283253</guid>
					<title><![CDATA[Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283253</link>
					<pubDate>Wed, 27 May 2015 19:25:57 +0000</pubDate>
					<dc:creator>Joshua</dc:creator>

					<description>
						<![CDATA[
						<p>Hello!</p>
<p>First, thanks for making such an awesome theme.  I will be recommending/purchasing it for all future clients.</p>
<p>The website in question is:</p>
<p><a href="http://www.yaka.life" rel="nofollow">http://www.yaka.life</a><br />
WP: 4.2.2<br />
X: 3.2.5<br />
X-Shortcodes: 3.0.5</p>
<p>I am building a single page site with the Navbar fixed to the right of the screen.</p>
<p>Within the content I would like to be using a parallax effect. Right now it works, minus one issue.  The images stretch across the full screen underneath the Navbar.</p>
<p>Is there a way to force the images to respond to the width/position of the Navbar?</p>
<p>With the initial Background Images I used the CSS code:</p>
<pre><code>.backstretch img {
width: 78% !important;
height: 100% !important;
top: 0px !important;</code></pre>
<p>Pretty sure this is a sloppy and inefficient way to fix this issue.  Also, on larger computer screens, it forces a white area in between the Navbar and the image.</p>
<p>Is there a better way to do this? I noticed that when I used Revolution Slider &#8220;Above Masthead&#8221; on the page, their feature to &#8220;Offset Containers&#8221; worked perfectly when I put in &#8220;#x-navbar x-navbar-fixed-right&#8221;.</p>
<p>My question is, is there a way to use &#8220;Offset Container&#8221; for the background images that I want a Parallax effect with?</p>
<p>Thanks for the support!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283326</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283326</link>
					<pubDate>Wed, 27 May 2015 20:28:57 +0000</pubDate>
					<dc:creator>Joshua</dc:creator>

					<description>
						<![CDATA[
						<p>I have a temporary fix in place by adding the following css into the content bands &#8220;style&#8221; tab.</p>
<pre><code>display: block; 
height: 500px; 
background-size: 78%; 
background-position: 0% !important;</code></pre>
<p>Seems to work, but again it is a sloppy way to fix it, as it makes the formatting strange on large screens.</p>
<p>Thanks again for the help</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283607</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-283607</link>
					<pubDate>Wed, 27 May 2015 23:51:56 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in! Please try to change your <code>background-size: 78%;</code> to <code>background-size: cover;</code></p>
<p>Hope it helps, Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-284798</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-284798</link>
					<pubDate>Thu, 28 May 2015 18:02:50 +0000</pubDate>
					<dc:creator>Joshua</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for responding, but unfortunately that does not help at all.</p>
<p>This causes the image to go behind the navbar, just as it would without any code.  It seems like the element is not recognizing the Navbar as limit to its size.</p>
<p>Any other ideas?</p>
<p>Appreciate your continued support.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-285269</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-285269</link>
					<pubDate>Fri, 29 May 2015 01:40:05 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Please replace your css code with this code instead:</p>
<pre><code>.backstretch img {
  width: 80% !important;
  width: calc(100% - 325px) !important;
  height: 100% !important;
  top: 0px !important;
}</code></pre>
<p>We’d love to know if this works out for you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-291402</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-291402</link>
					<pubDate>Wed, 03 Jun 2015 18:56:16 +0000</pubDate>
					<dc:creator>Joshua</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks guys.</p>
<p>This does seem to work better then the code I had.  I need to get to a larger computer screen to test it fully, but so far it seems like a great fix.</p>
<p>Can you help me understand what is happening here, because I would like to do this same thing for all of the paralaxing images further down in the site.  I attempted to reformat the code you gave me above and apply it to the paralaxing images, however it did not work.</p>
<p>The images in question are the three that say:</p>
<p>&#8220;A place to create community&#8221;<br />
&#8220;Dream a project make it real&#8221;<br />
&#8220;We provide resources for your creativity to flourish&#8221;</p>
<p>The code I am using is:</p>
<pre><code>display: block; 
height: 500px; 
background-size: 78%; 
background-position: 0% !important; </code></pre>
<p>This seems to work for screens around 13-15&#8242; but breaks on anything bigger and also starts to format funny is the browser window size is stretched to strange aspect ratios.</p>
<p>Your support team is the reason I will continue to recommend, and purchase, Theme X licenses.  </p>
<p>You all are great!</p>
<p>Thanks you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-291867</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-291867</link>
					<pubDate>Thu, 04 Jun 2015 00:49:27 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Please try to use only this code: </p>
<pre><code>display: block; 
height: 500px; </code></pre>
<p>You do not need background size and background position. Adding these two, changes the behaviour of the parallax effect within your content. You can try to check and compare with and without it. You do not need to adjust the width because the content band doesn&#8217;t run through behind your sidebar unlike the background image stretch.</p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-299354</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-299354</link>
					<pubDate>Thu, 11 Jun 2015 20:38:44 +0000</pubDate>
					<dc:creator>Joshua</dc:creator>

					<description>
						<![CDATA[
						<p>Hello again, </p>
<p>Apologize about the delay between my responses.  This is a project being built at a slow place.</p>
<p>Unfortunately your last response is not true.  The parallax images do indeed go behind the Navbar and will not fit to the size of the website.</p>
<p>Also, I am disappointed to report that your new cornerstone does not function </p>
<ul>at all</ul>
<p> with a webpage that has Navbar Fixed Right. Was really hoping that it would be able to solve this problem, but I have attempted to rebuild the page using Cornerstone and have run into more issues then I did with Visual Composer.  Issues include not being able to add elements to Rows, as they do not appear.</p>
<p>Is there a possible CSS code that can be used to fix this issue like the one we used for the .backstretch img?</p>
<p>Thank you for the continued support.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-299846</guid>
					<title><![CDATA[Reply To: Parallax issue with Navbar fixed right.]]></title>
					<link>https://theme.co/archive/forums/topic/parallax-issue-with-navbar-fixed-right/#post-299846</link>
					<pubDate>Fri, 12 Jun 2015 09:46:42 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Sorry if that didn&#8217;t work out for you. Please remove the code we gave you in our previous reply. How about we try this code for the backstretch</p>
<pre><code>.home .backstretch {
  width: 90% !important;
  width: calc(100% - 325px) !important;
}

.home .backstretch img {
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: none !important;
  max-height: none !important;
  max-width: 100% !important;
}</code></pre>
<p>With the code above, this is what the results:<br />
<a href="http://prntscr.com/7g1wmc" rel="nofollow">http://prntscr.com/7g1wmc</a><br />
<a href="http://prntscr.com/7g1x2y" rel="nofollow">http://prntscr.com/7g1x2y</a></p>
<p>And for your parallax effect, please try to remove you inline css <code>background-size: 78%;</code>. This is the results without the background size:<br />
<a href="http://prntscr.com/7g1xy4" rel="nofollow">http://prntscr.com/7g1xy4</a><br />
<a href="http://prntscr.com/7g1yan" rel="nofollow">http://prntscr.com/7g1yan</a><br />
<a href="http://prntscr.com/7g1ykx" rel="nofollow">http://prntscr.com/7g1ykx</a></p>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

