<?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>Can I get the Revolution slider above my nav bar, but below my logo bar? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 04: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/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-149346</guid>
					<title><![CDATA[Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-149346</link>
					<pubDate>Thu, 20 Nov 2014 17:56:55 +0000</pubDate>
					<dc:creator>Team Traceur</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>Can I get the Revolution slider above my nav bar, but below my logo bar? I am using a stacked look. My page is under construction at the moment so if you need to see the page I will have to get you into the backend.</p>
<p>Cheers 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-149790</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-149790</link>
					<pubDate>Fri, 21 Nov 2014 11:19:00 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thank you for writing in!</p>
<p>Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>After that, copy the file <strong>wp-content/themes/x/framework/views/renew/wp-header.php</strong> in your child theme&#8217;s folder <strong>/framework/views/renew/</strong>, open the file in a text editor and replace entire code with following:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/RENEW/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Renew.
// =============================================================================

?&gt;

&lt;?php x_get_view( &#039;global&#039;, &#039;_header&#039; ); ?&gt;

  &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-above&#039; ); ?&gt;

  &lt;header class=&quot;&lt;?php x_masthead_class(); ?&gt;&quot; role=&quot;banner&quot;&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_topbar&#039; ); ?&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_navbar&#039; ); ?&gt;
  &lt;/header&gt;

  &lt;?php if ( !x_get_logo_navigation_layout() == &#039;stacked&#039; ): ?&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-below&#039; ); ?&gt;
  &lt;?php endif; ?&gt;
  &lt;?php x_get_view( &#039;renew&#039;, &#039;_landmark-header&#039; ); ?&gt;
</code></pre>
<p>Next, copy the file <strong>wp-content/themes/x/framework/views/global/_navbar.php</strong> in your child theme&#8217;s folder <strong>/framework/views/global/</strong>, open the copied file in a text editor and replace entire code with following:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_NAVBAR.PHP
// -----------------------------------------------------------------------------
// Outputs the navbar.
// =============================================================================

$navbar_position = x_get_navbar_positioning();
$logo_nav_layout = x_get_logo_navigation_layout();
$is_one_page_nav = x_is_one_page_navigation();

?&gt;

&lt;?php if ( ( $navbar_position == &#039;static-top&#039; || $navbar_position == &#039;fixed-top&#039; || $is_one_page_nav ) &amp;&amp; $logo_nav_layout == &#039;stacked&#039; ) : ?&gt;

  &lt;div class=&quot;x-logobar&quot;&gt;
    &lt;div class=&quot;x-logobar-inner&quot;&gt;
      &lt;div class=&quot;x-container-fluid max width&quot;&gt;
        &lt;?php x_get_view( &#039;global&#039;, &#039;_brand&#039; ); ?&gt;
      &lt;/div&gt;
    &lt;/div&gt; &lt;!-- end .x-logobar-inner --&gt;
  &lt;/div&gt; &lt;!-- end .x-logobar --&gt;

  &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-below&#039; ); ?&gt;

  &lt;div class=&quot;x-navbar-wrap&quot;&gt;
    &lt;div class=&quot;&lt;?php x_navbar_class(); ?&gt;&quot;&gt;
      &lt;div class=&quot;x-navbar-inner&quot;&gt;
        &lt;div class=&quot;x-container-fluid max width&quot;&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_nav&#039;, &#039;primary&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;/div&gt; &lt;!-- end .x-navbar-inner --&gt;
    &lt;/div&gt; &lt;!-- end .x-navbar --&gt;
  &lt;/div&gt; &lt;!-- end .x-navbar-wrap --&gt;

&lt;?php else : ?&gt;

  &lt;div class=&quot;x-navbar-wrap&quot;&gt;
    &lt;div class=&quot;&lt;?php x_navbar_class(); ?&gt;&quot;&gt;
      &lt;div class=&quot;x-navbar-inner&quot;&gt;
        &lt;div class=&quot;x-container-fluid max width&quot;&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_brand&#039; ); ?&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_nav&#039;, &#039;primary&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;/div&gt; &lt;!-- end .x-navbar-inner --&gt;
    &lt;/div&gt; &lt;!-- end .x-navbar --&gt;
  &lt;/div&gt; &lt;!-- end .x-navbar-wrap --&gt;

&lt;?php endif; ?&gt;
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699356</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699356</link>
					<pubDate>Wed, 09 Dec 2015 16:00:16 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

					<description>
						<![CDATA[
						<p>Will the same code work for integrity? Id like the logobar to be on top, then the slider, then the navbar. while i scroll down, the logobar remains static while the slider and the navbar scroll as normal. Once the navbar reaches the logobar (to appear as the stacked look that i have now) the navbar pushes up the logobar to then have a static top navbar (as I have now). Is this possible? Also, I only want this on my landing page. For the rest of the pages, the normal logobar then navbar stack that comes standard works best. I hope this isnt way to confusing.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699378</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699378</link>
					<pubDate>Wed, 09 Dec 2015 16:10:14 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699697</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-699697</link>
					<pubDate>Wed, 09 Dec 2015 20:25:36 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in! For the integrity theme, you can create a new file and name it <strong>wp-header.php</strong> and paste the following code inside:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/INTEGRITY/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Integrity.
// =============================================================================

?&gt;

&lt;?php x_get_view( &#039;global&#039;, &#039;_header&#039; ); ?&gt;

  &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-above&#039; ); ?&gt;

  &lt;header class=&quot;&lt;?php x_masthead_class(); ?&gt;&quot; role=&quot;banner&quot;&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_topbar&#039; ); ?&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_navbar&#039; ); ?&gt;
    &lt;?php x_get_view( &#039;integrity&#039;, &#039;_breadcrumbs&#039; ); ?&gt;
  &lt;/header&gt;
	&lt;?php if ( !x_get_logo_navigation_layout() == &#039;stacked&#039; ): ?&gt;
		&lt;?php x_get_view( &#039;global&#039;, &#039;_slider-below&#039; ); ?&gt;
	&lt;?php endif; ?&gt;
	&lt;?php x_get_view( &#039;integrity&#039;, &#039;_landmark-header&#039; ); ?&gt;</code></pre>
<p>Upload this file to <strong>\x-child\framework\views\integrity\</strong> directory in your <strong>Child Theme</strong>. Then you can create a new file with the name of <strong>_navbar.php</strong> and paste the following code inside:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_NAVBAR.PHP
// -----------------------------------------------------------------------------
// Outputs the navbar.
// =============================================================================

$navbar_position = x_get_navbar_positioning();
$logo_nav_layout = x_get_logo_navigation_layout();
$is_one_page_nav = x_is_one_page_navigation();

?&gt;

&lt;?php if ( ( $navbar_position == &#039;static-top&#039; || $navbar_position == &#039;fixed-top&#039; || $is_one_page_nav ) &amp;&amp; $logo_nav_layout == &#039;stacked&#039; ) : ?&gt;

  &lt;div class=&quot;x-logobar&quot;&gt;
    &lt;div class=&quot;x-logobar-inner&quot;&gt;
      &lt;div class=&quot;x-container-fluid max width&quot;&gt;
        &lt;?php x_get_view( &#039;global&#039;, &#039;_brand&#039; ); ?&gt;
      &lt;/div&gt;
    &lt;/div&gt; &lt;!-- end .x-logobar-inner --&gt;
  &lt;/div&gt; &lt;!-- end .x-logobar --&gt;

  &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-below&#039; ); ?&gt;

  &lt;div class=&quot;x-navbar-wrap&quot;&gt;
    &lt;div class=&quot;&lt;?php x_navbar_class(); ?&gt;&quot;&gt;
      &lt;div class=&quot;x-navbar-inner&quot;&gt;
        &lt;div class=&quot;x-container-fluid max width&quot;&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_nav&#039;, &#039;primary&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;/div&gt; &lt;!-- end .x-navbar-inner --&gt;
    &lt;/div&gt; &lt;!-- end .x-navbar --&gt;
  &lt;/div&gt; &lt;!-- end .x-navbar-wrap --&gt;

&lt;?php else : ?&gt;

  &lt;div class=&quot;x-navbar-wrap&quot;&gt;
    &lt;div class=&quot;&lt;?php x_navbar_class(); ?&gt;&quot;&gt;
      &lt;div class=&quot;x-navbar-inner&quot;&gt;
        &lt;div class=&quot;x-container-fluid max width&quot;&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_brand&#039; ); ?&gt;
          &lt;?php x_get_view( &#039;global&#039;, &#039;_nav&#039;, &#039;primary&#039; ); ?&gt;
        &lt;/div&gt;
      &lt;/div&gt; &lt;!-- end .x-navbar-inner --&gt;
    &lt;/div&gt; &lt;!-- end .x-navbar --&gt;
  &lt;/div&gt; &lt;!-- end .x-navbar-wrap --&gt;

&lt;?php endif; ?&gt;</code></pre>
<p>Upload this file to <strong>\x-child\framework\views\global\</strong> directory in your <strong>child theme</strong> as well.</p>
<p>Let us know how this goes!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701062</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701062</link>
					<pubDate>Thu, 10 Dec 2015 14:46:43 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701068</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701068</link>
					<pubDate>Thu, 10 Dec 2015 14:48:09 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701072</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701072</link>
					<pubDate>Thu, 10 Dec 2015 14:49:58 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry for the posts, it wont let me upload a full screen snapshot. ill try again. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701413</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701413</link>
					<pubDate>Thu, 10 Dec 2015 19:16:19 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Thank you for providing the screenshots, I was able to find the mistake you&#8217;ve done by replicating it on my localhost. You have not copied the wp-header.php code completely. You&#8217;ve missied <code>&lt;?php</code> by mistake in the start of the code. Please make sure you completely copy and paste the code. I&#8217;m pasting the code here again so you can copy this again:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/INTEGRITY/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Integrity.
// =============================================================================

?&gt;

&lt;?php x_get_view( &#039;global&#039;, &#039;_header&#039; ); ?&gt;

  &lt;?php x_get_view( &#039;global&#039;, &#039;_slider-above&#039; ); ?&gt;

  &lt;header class=&quot;&lt;?php x_masthead_class(); ?&gt;&quot; role=&quot;banner&quot;&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_topbar&#039; ); ?&gt;
    &lt;?php x_get_view( &#039;global&#039;, &#039;_navbar&#039; ); ?&gt;
    &lt;?php x_get_view( &#039;integrity&#039;, &#039;_breadcrumbs&#039; ); ?&gt;
  &lt;/header&gt;
	&lt;?php if ( !x_get_logo_navigation_layout() == &#039;stacked&#039; ): ?&gt;
		&lt;?php x_get_view( &#039;global&#039;, &#039;_slider-below&#039; ); ?&gt;
	&lt;?php endif; ?&gt;
	&lt;?php x_get_view( &#039;integrity&#039;, &#039;_landmark-header&#039; ); ?&gt;</code></pre>
<p>Please make sure you copy this completely and paste it in <strong>wp-header.php</strong> file of your child theme.</p>
<p>Let us know how this goes!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701482</guid>
					<title><![CDATA[Reply To: Can I get the Revolution slider above my nav bar, but below my logo bar?]]></title>
					<link>https://theme.co/archive/forums/topic/can-i-get-the-revolution-slider-above-my-nav-bar-but-below-my-logo-bar/#post-701482</link>
					<pubDate>Thu, 10 Dec 2015 20:18:13 +0000</pubDate>
					<dc:creator>cooper2121</dc:creator>

					<description>
						<![CDATA[
						<p>I very much appreciate your assistance. It&#8217;s looking great and I think I&#8217;m almost there! The last thing would be to make the logobar remain where it is on top while scrolling down, until the navbar replaces it. How would I go about doing this?</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

