<?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>Menu in Top Bar &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/menu-in-top-bar/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/menu-in-top-bar/feed/</link>
		<description></description>
		<lastBuildDate>Mon, 13 Oct 2025 02:03:55 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-153490</guid>
					<title><![CDATA[Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-153490</link>
					<pubDate>Wed, 26 Nov 2014 20:53:04 +0000</pubDate>
					<dc:creator>carengoodrich</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I have been stumbling around with X for a couple weeks now, using the Renew theme. I am stumped as to how to add menu tabs to my top bar. I created some &#8220;categories&#8221; as well as an About Me page. I put each blog post into a Category. I want each Category as well as the About Me page to be menu tabs on the top bar and can&#8217;t figure out how to put them there.</p>
<p>I also downloaded an ad plugin but see no way to implement it with the Renew dashboard choices. It shows up under &#8220;Widgets&#8221; in my Renew Sidebar but there is no place to paste HTML for the ad. What am I missing here?</p>
<p>Thanks,</p>
<p>Caren<br />
paintingheart.com</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-153793</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-153793</link>
					<pubDate>Thu, 27 Nov 2014 08:22:20 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Caren,</p>
<p>Thanks for writing in!</p>
<p>You can create your menu by navigating to Appearance &gt; Menus.</p>
<p><a href="http://screencast.com/t/uF4CV9Uq9Ykw" rel="nofollow">http://screencast.com/t/uF4CV9Uq9Ykw</a></p>
<p>Then to put it in the topbar. Menu name should be <strong>Topbar Menu</strong></p>
<p>Create file _topbar.php in wp-content\themes\x-child-renew\framework\views\global<br />
and copy the code below into that file.</p>
<pre><code>
&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_TOPBAR.PHP
// -----------------------------------------------------------------------------
// Includes topbar output.
// =============================================================================

?&gt;

&lt;?php if ( x_get_option( &#039;x_topbar_display&#039;, &#039;&#039; ) == &#039;1&#039; ) : ?&gt;

  &lt;div class=&quot;x-topbar&quot;&gt;
    &lt;div class=&quot;x-topbar-inner x-container-fluid max width&quot;&gt;
      &lt;?php if ( x_get_option( &#039;x_topbar_content&#039; ) != &#039;&#039; ) : ?&gt;
      &lt;p class=&quot;p-info&quot;&gt;&lt;?php echo x_get_option( &#039;x_topbar_content&#039; ); ?&gt;&lt;/p&gt;
      &lt;?php endif; ?&gt; 
      &lt;?php

        wp_nav_menu( array(
            &#039;menu&#039;           =&gt; &#039;topbar-menu&#039;,
            &#039;container&#039;      =&gt; false,
            &#039;menu_class&#039;     =&gt; &#039;x-nav sf-menu&#039;,
            &#039;container&#039;       =&gt; &#039;div&#039;,
            &#039;container_class&#039; =&gt; &#039;top-menu&#039;,
        ) );
      ?&gt;
      &lt;?php x_social_global(); ?&gt;
    &lt;/div&gt;
  &lt;/div&gt;

&lt;?php endif; ?&gt;
</code></pre>
<p>You can then add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
.top-menu {
      float:left;
}

.top-menu ul {
     margin:0;
}

.top-menu li {
     display:inline-block;
}
.top-menu li a {
    padding:0 20px 0 0;
    line-height:46px;
}
</code></pre>
<p>With regards to your ad plugin, Can you tell us where you would like the ad to show? and what ad plugin you are using.</p>
<p>Hope this helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154209</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154209</link>
					<pubDate>Thu, 27 Nov 2014 23:19:53 +0000</pubDate>
					<dc:creator>carengoodrich</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you, I was able to create a topbar menu, but I need further instructions on where to go to do this:</p>
<p>&#8220;Create file _topbar.php in wp-content\themes\x-child-renew\framework\views\global<br />
and copy the code below into that file.&#8221;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154259</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154259</link>
					<pubDate>Fri, 28 Nov 2014 02:44:55 +0000</pubDate>
					<dc:creator>carengoodrich</dc:creator>

					<description>
						<![CDATA[
						<p>As far as my ad plug in, I am using Advertising Manager (but I&#8217;m open to suggestions!) and would like to put an ad in my sidebar and maybe a banner in the topbar.</p>
<p>thanks!</p>
<p>caren</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154612</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154612</link>
					<pubDate>Fri, 28 Nov 2014 17:27:03 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Caren,</p>
<p>We&#8217;re sorry for the confusion!</p>
<p>You first need to install a child theme in your website. 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/global/_topbar.php</strong> in your child theme&#8217;s folder <strong>/framework/views/global/</strong>, open the file in a text editor and replace entire code with the above given code.</p>
<p>That&#8217;s it 🙂</p>
<p>Regarding the ads, you can add them in using a text widget in your sidebar by going into <strong>Appearance &gt; Widgets</strong>.</p>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154646</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154646</link>
					<pubDate>Fri, 28 Nov 2014 18:29:59 +0000</pubDate>
					<dc:creator>carengoodrich</dc:creator>

					<description>
						<![CDATA[
						<p>Ok thanks for the info. Will I lose the blog entries I have already written when I install a child theme?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154973</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-154973</link>
					<pubDate>Sat, 29 Nov 2014 13:45:30 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>HI There,</p>
<p>You won&#8217;t loose any content when switching from one theme to another or from parent theme to child theme,</p>
<p>The only thing you need to do is re assign your menu as wordpress menus are tied with active theme. You should also check the widget and see of there are missing widgets after switching to child theme, Missing widgets will usually go to &#8220;Inactive Widgets&#8221; and you can simply drag and assign them to their correct positions.</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-176124</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-176124</link>
					<pubDate>Sun, 04 Jan 2015 12:05:00 +0000</pubDate>
					<dc:creator>LisaChristen2</dc:creator>

					<description>
						<![CDATA[
						<p>This CSS is great, thank you! Questions: </p>
<p>1. How do I customize the font color and size on the topbar? Right now I think it&#8217;s using the Customizer Body selections.<br />
2. How do I make the background of the topbar black to match my navbar (and please no line separating the topbar and the navbar &#8211; they should look like one large header).<br />
3. How do I make the WPML plugin display a menu in this topbar? </p>
<p>Website: <a href="http://www.christenguss.com" rel="nofollow">http://www.christenguss.com</a><br />
WP, X and Plugins all up-to-date</p>
<p>Thanks awesome support staff!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-176217</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-176217</link>
					<pubDate>Sun, 04 Jan 2015 15:46:54 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Add the following code:<br />
#1 </p>
<pre><code>.top-menu a {
color: white;
font-size: 12px;
}</code></pre>
<p>#2</p>
<pre><code>.x-topbar {
background-color: #000;
}</code></pre>
<p>#3 You have already used the custom code to display menu in topbar,you need to add item to topbar-menu.</p>
<p>Hope it  helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-352488</guid>
					<title><![CDATA[Reply To: Menu in Top Bar]]></title>
					<link>https://theme.co/archive/forums/topic/menu-in-top-bar/#post-352488</link>
					<pubDate>Fri, 07 Aug 2015 03:06:24 +0000</pubDate>
					<dc:creator>vaughnmercury</dc:creator>

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

					
					
				</item>

					
		
	</channel>
	</rss>

