<?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>BlueOwlCreative  &#187;  Topic: Linking to Row</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/feed/</link>
		<description></description>
		<pubDate>Sun, 23 Aug 2026 10:59:44 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31122</guid>
					<title><![CDATA[Linking to Row]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31122</link>
					<pubDate>Thu, 02 Mar 2017 13:20:03 +0000</pubDate>
					<dc:creator>CoderZ</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;ve given a row on my site the id &#8220;features&#8221; and I link to it in the navigatio.</p>
<p>Sometimes for example when I am on hte page itself or coming from another site it works. If I am on a different page on my site and then I click on the nav bar then it jumps to the bottom.</p>
<p><a href="http://gocoderz.com/#features" rel="nofollow">http://gocoderz.com/#features</a></p>
<p>Can you help me out here?</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31136</guid>
					<title><![CDATA[Reply To: Linking to Row]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31136</link>
					<pubDate>Mon, 06 Mar 2017 07:55:16 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>The reason is most likely the carousel that is above the &#8220;features&#8221; div. It get&#8217;s initialized at runtime and before it is it stretches down quite a bit, so the calculation for the scroll is no longer valid. Try moving the carousel away (or below the div) and try again.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31146</guid>
					<title><![CDATA[Reply To: Linking to Row]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31146</link>
					<pubDate>Mon, 06 Mar 2017 08:31:22 +0000</pubDate>
					<dc:creator>CoderZ</dc:creator>

					<description>
						<![CDATA[
						<p>I did that and it indeed fixed the problem. <a href="http://coderz.staging.wpengine.com/#features" rel="nofollow">http://coderz.staging.wpengine.com/#features</a></p>
<p>However I need a different solution because this carousel needs to be towards the top of the page.  Can you think of another solution? Is it because of the number of images in the carousel?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31149</guid>
					<title><![CDATA[Reply To: Linking to Row]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/linking-to-row/#post-31149</link>
					<pubDate>Mon, 06 Mar 2017 13:47:39 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You could ultimately move the smooth scroll initialization to a Window Load event instead of window.ready, that way it will fire only once everything on the page is loaded. </p>
<p>Find this section in your js/commmon.js file:</p>
<pre><code>// If a hash exists in URL, scroll to it
if ( window.location.hash ) {
	var options = {
		speed: 800, 
		easing: &#039;easeInOutQuart&#039;,
	};
	// Check if Element with this ID exists
	if($(window.location.hash).boc_doesExist()){
		smoothScroll.animateScroll( null, window.location.hash, options );
	}
}</code></pre>
<p>Remove it from there and at the bottom of the same file add this:</p>
<pre><code>jQuery(window).load(function(){
	// If a hash exists in URL, scroll to it
	if ( window.location.hash ) {
        var options = {
			speed: 800, 
			easing: &#039;easeInOutQuart&#039;,
		};
		// Check if Element with this ID exists
		if(jQuery(window.location.hash).boc_doesExist()){
			smoothScroll.animateScroll( null, window.location.hash, options );
		}
    }
});</code></pre>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

