<?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>Anchor link scrolls too far / top is covered by x-navbar &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 17 Oct 2025 03:56:51 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-152832</guid>
					<title><![CDATA[Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-152832</link>
					<pubDate>Tue, 25 Nov 2014 23:40:20 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

					<description>
						<![CDATA[
						<p>STACK: Integrity</p>
<p>When I click an anchor within a page it scrolls down to the content correctly but the header content &#8220;x-navbar&#8221; covers over the top of the page.  I can provide a link and login once an admin responds.  Thank you.</p>
<p><img decoding="async" src="http://www.drivingdesigns.com/wp-content/uploads/2014/11/2014-11-25_1531.png" alt="anchor error" /></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-153041</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-153041</link>
					<pubDate>Wed, 26 Nov 2014 09:31:23 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for writing in! To assist you with this issue, we&#8217;ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-154889</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-154889</link>
					<pubDate>Sat, 29 Nov 2014 07:03:08 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155144</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155144</link>
					<pubDate>Sun, 30 Nov 2014 02:59:21 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Robert,</p>
<p>I&#8217;ve added the code below in your <strong>Appearance &gt; Customize &gt; Custom &gt; JavaScript</strong> for links to scroll smoothly and with an offset of 220px so that you&#8217;re internal links lands below the navbar.</p>
<pre><code>jQuery(document).ready(function(){
    jQuery(&#039;a[href^=&quot;#&quot;]&#039;).on(&#039;click&#039;,function (e) {
        e.preventDefault();

        var target = this.hash,
        jQuerytarget = jQuery(target);

        jQuery(&#039;html, body&#039;).stop().animate({
            &#039;scrollTop&#039;: jQuerytarget.offset().top-220
        }, 900, &#039;swing&#039;, function () {
            window.location.hash = target;
        });
    });
});</code></pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155365</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155365</link>
					<pubDate>Sun, 30 Nov 2014 18:06:36 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

					<description>
						<![CDATA[
						<p>Awesome!  Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155548</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-155548</link>
					<pubDate>Mon, 01 Dec 2014 05:49:12 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Robert.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160546</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160546</link>
					<pubDate>Mon, 08 Dec 2014 17:17:43 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

					<description>
						<![CDATA[
						<p>That solution stopped working for some reason.</p>
<p>Is there some other way to get this working?  Seems like named anchors (scrolling to sections) would be in the realm of core functionality. </p>
<p>I&#8217;ll private over the login credentials again.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160548</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160548</link>
					<pubDate>Mon, 08 Dec 2014 17:18:47 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160770</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-160770</link>
					<pubDate>Mon, 08 Dec 2014 23:38:41 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Robert,</p>
<p>It&#8217;s working fine on my end. Can you please check once again after clearing your browser&#8217;s cache. If this doesn&#8217;t help please provide us with a little more clarification on what it is you&#8217;re wanting to do (perhaps some screenshots), we&#8217;ll be happy to provide you with a response once we have a better understanding of the situation.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-161297</guid>
					<title><![CDATA[Reply To: Anchor link scrolls too far / top is covered by x-navbar]]></title>
					<link>https://theme.co/archive/forums/topic/anchor-link-scrolls-too-far-top-is-covered-by-x-navbar/#post-161297</link>
					<pubDate>Tue, 09 Dec 2014 17:47:52 +0000</pubDate>
					<dc:creator>Robert B</dc:creator>

					<description>
						<![CDATA[
						<p>I cleared my cache and I&#8217;m still having the issue.</p>
<p>The screen shot is above in the first post.<br />
Here&#8217;s an example link:<br />
<a href="http://dev.michaelgrinder.com/class-list/#Business-and-Corporate" rel="nofollow">http://dev.michaelgrinder.com/class-list/#Business-and-Corporate</a></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

