<?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>Add an additional menu under the top menu? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 19 Oct 2025 16:48:10 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28491</guid>
					<title><![CDATA[Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28491</link>
					<pubDate>Tue, 01 Apr 2014 07:32:39 +0000</pubDate>
					<dc:creator>Marco B</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,<br />
I need to add a second menu where publishing the list of the categories under the top-menu. Is it possible? How can I do?<br />
regards</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28500</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28500</link>
					<pubDate>Tue, 01 Apr 2014 08:53:40 +0000</pubDate>
					<dc:creator>Silvia C</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m interested in this too! A second horizontal menu beneath the navigation bar in the header would be sooo useful!<br />
Cheers<br />
Silvia</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28739</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-28739</link>
					<pubDate>Tue, 01 Apr 2014 20:38:09 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>X Theme doesn&#8217;t have a built in way to add additional navigation here. If you&#8217;re interested in coding this feature yourself, I can provide a bit of direction.</p>
<p>I would recommend changing the navbar template in this file: <strong>x/framework/views/global/_navbar.php</strong></p>
<p>If you&#8217;re going to be making code changes, I&#8217;d advise that you setup a child theme. You can find our collection here: <a href="http://theme.co/x/member/child-themes/" rel="nofollow">http://theme.co/x/member/child-themes/</a> Or you can create your own with this information: <a href="http://codex.wordpress.org/Child_Themes" rel="nofollow">http://codex.wordpress.org/Child_Themes</a> A child theme allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released.</p>
<p>I&#8217;d recommend reviewing the WordPress documentation on using menus in WordPress theme development. You can find this article here: <a href="http://codex.wordpress.org/Navigation_Menus" rel="nofollow">http://codex.wordpress.org/Navigation_Menus</a></p>
<p>There are two important steps here.</p>
<p>1. Register the menu in your functions.php file. This gives you a new menu location to assign in <strong>Appearance &gt; Menus</strong>. For this you would use <a href="http://codex.wordpress.org/Function_Reference/register_nav_menu" title="register_nav_menu" rel="nofollow"></a>.</p>
<p>2. Edit the template to output the menu. For this you would use: <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" title="wp_nav_menu" rel="nofollow"></a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-29917</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-29917</link>
					<pubDate>Fri, 04 Apr 2014 16:20:28 +0000</pubDate>
					<dc:creator>Marco B</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks so much, could you please repaste the links missed? Another question: in which file I have to place the code in order to publish the menu under the menu bar?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-30151</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-30151</link>
					<pubDate>Sat, 05 Apr 2014 18:28:55 +0000</pubDate>
					<dc:creator>Support</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Again,</p>
<p>you will have to place the code in <strong>x/framework/views/global/_navbar.php</strong> file right below the following code</p>
<pre><code>wp_nav_menu( array(
            &#039;theme_location&#039; =&gt; &#039;primary&#039;,
            &#039;container&#039;      =&gt; false,
            &#039;menu_class&#039;     =&gt; &#039;x-nav sf-menu&#039;
          ) );</code></pre>
<p>If you&#8217;re done registering the new menu in your <strong>functions.php</strong> file and assigning the new menu location at <strong>Appearance-&gt;Menus</strong>, you will just need to duplicate the above code and modify theme_location and menu_class to call your new menu(<a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" target="_blank" rel="nofollow">http://codex.wordpress.org/Function_Reference/wp_nav_menu</a>). Then you can use some CSS to style the menu class you have defined.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-55488</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-55488</link>
					<pubDate>Thu, 12 Jun 2014 11:38:16 +0000</pubDate>
					<dc:creator>Mohsan A</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you, I&#8217;ve succesfully added a new menu in the header. Could you please provide the Css to style it like the main menu? I&#8217;m using Renew stack (child theme)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-55819</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-55819</link>
					<pubDate>Fri, 13 Jun 2014 10:06:32 +0000</pubDate>
					<dc:creator>Support</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Mohsan,</p>
<p>Happy to hear that you made it, congrats.</p>
<p>To style it like the main menu, it would be easier to know which settings of Renew you are using(Renew 01, Renew 02, &#8230;) or share with us your website url. You can also try to open developer tools in chrome(command + i on a mac, control + i on a pc) and copy the menu related code(.x-nav, .x-navbar .x-nav&gt;li, .x-navbar .x-nav&gt;li&gt;a).</p>
<p>Cheers.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58263</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58263</link>
					<pubDate>Thu, 19 Jun 2014 10:31:07 +0000</pubDate>
					<dc:creator>Mohsan A</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58654</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58654</link>
					<pubDate>Fri, 20 Jun 2014 03:09:39 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Mohsan,</p>
<p>Placing that menu under header is not currently possible at your setup. You have place it under the slider in, please move it under the menu.</p>
<p>There was a blue line at your slider, should I just give you css for X slider instead?</p>
<p>Let me know.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58686</guid>
					<title><![CDATA[Reply To: Add an additional menu under the top menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-an-additional-menu-under-the-top-menu/#post-58686</link>
					<pubDate>Fri, 20 Jun 2014 05:05:56 +0000</pubDate>
					<dc:creator>Mohsan A</dc:creator>

					<description>
						<![CDATA[
						<p>Actualy, I was hoping to add it just under the main nav menu to have two menus, that look the same, but are divided by a blue line. </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

