<?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>Slider in logobar &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/slider-in-logobar/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/slider-in-logobar/feed/</link>
		<description></description>
		<lastBuildDate>Thu, 25 Dec 2025 09:19:32 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353500</guid>
					<title><![CDATA[Slider in logobar]]></title>
					<link>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353500</link>
					<pubDate>Sat, 08 Aug 2015 06:30:20 +0000</pubDate>
					<dc:creator>cjerryme</dc:creator>

					<description>
						<![CDATA[
						<p>Is it possible to put a full-width slider in the logobar or simply replace the logobar with a slider?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353501</guid>
					<title><![CDATA[Reply To: Slider in logobar]]></title>
					<link>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353501</link>
					<pubDate>Sat, 08 Aug 2015 06:33:32 +0000</pubDate>
					<dc:creator>cjerryme</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353502</guid>
					<title><![CDATA[Reply To: Slider in logobar]]></title>
					<link>https://theme.co/archive/forums/topic/slider-in-logobar/#post-353502</link>
					<pubDate>Sat, 08 Aug 2015 06:35:24 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</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>Copy _navbar.php from framework/views/global and put it in the same path inside child theme, now replace existing code with the 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 max width&quot;&gt;
        &lt;?php x_get_view( &#039;global&#039;, &#039;_brand&#039; ); ?&gt;
        &lt;?php echo do_shortcode(&#039;[rev_slider slider]&#039;); ?&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&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 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;/div&gt;
  &lt;/div&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 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;/div&gt;
  &lt;/div&gt;

&lt;?php endif; ?&gt;</code></pre>
<p>Instead of <code>[rev_slider slider]</code> put your slider shortcode.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/slider-in-logobar/#post-359621</guid>
					<title><![CDATA[Reply To: Slider in logobar]]></title>
					<link>https://theme.co/archive/forums/topic/slider-in-logobar/#post-359621</link>
					<pubDate>Sat, 15 Aug 2015 02:39:48 +0000</pubDate>
					<dc:creator>cjerryme</dc:creator>

					<description>
						<![CDATA[
						<p>thank you. it works like magic.</p>
<p>cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/slider-in-logobar/#post-359673</guid>
					<title><![CDATA[Reply To: Slider in logobar]]></title>
					<link>https://theme.co/archive/forums/topic/slider-in-logobar/#post-359673</link>
					<pubDate>Sat, 15 Aug 2015 04:15:33 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Please feel free to get in touch with us regarding any further queries about the X theme.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

