<?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>Set time for nav bar to appear &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 16:15:51 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340276</guid>
					<title><![CDATA[Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340276</link>
					<pubDate>Sat, 25 Jul 2015 15:19:28 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

					<description>
						<![CDATA[
						<p>Hi ! Is it possible to set some specific time after which the nav bar appears for the website ? Like when i open the website, there is no nav-bar, but after some set time, it appears and then stays.<br />
Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340299</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340299</link>
					<pubDate>Sat, 25 Jul 2015 15:46:36 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in!</p>
<p>#1] Try adding following CSS under <strong>Appearance &gt; Customize &gt; Custom &gt; CSS:</strong></p>
<pre><code>.x-navbar {
	display: none;
}</code></pre>
<p>#2] Try adding following Javascript under <strong>Appearance &gt; Customize &gt; Custom &gt; Javascript:</strong></p>
<pre><code>jQuery(document).ready(function($){
	setTimeout(function(){
		$(&#039;.x-navbar&#039;).fadeIn(&#039;slow&#039;);
	}, 500);
});</code></pre>
<p>You can change the 500 number, 500 mean 0.5 second.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340303</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340303</link>
					<pubDate>Sat, 25 Jul 2015 15:53:01 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

					<description>
						<![CDATA[
						<p>Hey ! That was indeed helpful !<br />
I have set the time for rev slider after which it disappears. But due to the height calculations, the one-page nav and the auto-highlight feature in the menu get disrupted. What could be the work around ?</p>
<p>This is the final piece for my website.<br />
Your help will be much appreciated.<br />
Thank you so much !</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340307</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340307</link>
					<pubDate>Sat, 25 Jul 2015 15:56:10 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

					<description>
						<![CDATA[
						<p>Or can auto scroll to the content page be done after setting some specific time to the website content ? without removing the slider ?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340398</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340398</link>
					<pubDate>Sat, 25 Jul 2015 19:03:24 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>We can help you with the second workaround. So, add following JS code under <strong>Custom &gt; JavaScript</strong> in the Customizer:</p>
<pre><code>jQuery(document).ready(function($) {
  if ( $(&#039;.x-slider-container&#039;).length ) {
    var adminbarHeight       = $(&#039;#wpadminbar&#039;).outerHeight();
    var navbarFixedTopHeight = $(&#039;.x-navbar-fixed-top-active .x-navbar&#039;).outerHeight();
    
    setTimeout(function() {
      $(&#039;html, body&#039;).animate({
        scrollTop: $(&#039;.x-main&#039;).offset().top - adminbarHeight - navbarFixedTopHeight + 1
      }, 700);
    }, 8000); 
  }
});
</code></pre>
<p>Increase/decrease <strong>8000</strong> ( = 8 seconds ) from the code to adjust the delay.</p>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340579</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340579</link>
					<pubDate>Sun, 26 Jul 2015 05:32:45 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

					<description>
						<![CDATA[
						<p>Hi ! Thank you so much. Works perfectly. Just the way I want. Just another thing though, as the scroll up arrow apeears after I scroll down some part of the page, can we get it to scroll up to a particular section of the page ? (section below the slider that is, the main content area).</p>
<p>Thank you again. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340637</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340637</link>
					<pubDate>Sun, 26 Jul 2015 07:40:49 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>You&#8217;re welcome!<br />
Thanks for letting us know that it has worked for you.</p>
<p>For the scroll up icon, please add this js code in your customizer, <strong>Appearance &gt; Customize &gt; Custom &gt; Javascript</strong></p>
<pre><code>(function($){
  var scrollTopAnchor = $(&#039;.x-scroll-top&#039;);
  var maintop = $(&#039;.x-main&#039;).scrollTop();
  scrollTopAnchor.click(function(){
    $(&#039;html,body&#039;).animate({ scrollTop: maintop }, 850, &#039;easeInOutExpo&#039;);
    return false;
  });
})(jQuery);</code></pre>
<p>Hope this helps. Kindly let us know.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340694</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340694</link>
					<pubDate>Sun, 26 Jul 2015 09:08:14 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

					<description>
						<![CDATA[
						<p>Hello ! Thanks for the reply, but this code doesn&#8217;t seem to work. The scroll up icon still scrolls back up to the slider, when I want it to only scroll till the portion from where the nav-bar starts.<br />
Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340701</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340701</link>
					<pubDate>Sun, 26 Jul 2015 09:17:51 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Would you mind providing us the url of your site with login credentials, if necessary, so we can take a closer look? 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>
<p>To do this, you can make a post with the following info:<br />
– Link to your site <br />
– WordPress Admin username / password (only if necessary)</p>
<p><strong>Don’t forget to select Set as private reply</strong>. This ensures your information is only visible to our staff.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340711</guid>
					<title><![CDATA[Reply To: Set time for nav bar to appear]]></title>
					<link>https://theme.co/archive/forums/topic/set-time-for-nav-bar-to-appear/#post-340711</link>
					<pubDate>Sun, 26 Jul 2015 09:25:27 +0000</pubDate>
					<dc:creator>rrrsarda</dc:creator>

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

					
					
				</item>

					
		
	</channel>
	</rss>

