<?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>mobile menu dropdown &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 01:36:22 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-249764</guid>
					<title><![CDATA[mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-249764</link>
					<pubDate>Tue, 14 Apr 2015 23:55:03 +0000</pubDate>
					<dc:creator>DonWattz</dc:creator>

					<description>
						<![CDATA[
						<p>On the mobile menu drop down for instance on an iPhone, when I click the menu button, with three lines, I see all my main menu items. For the ones that have a sub menu, there is a down down arrow to the right. It seems like the only way to get the sub menu to pop up is to click those arrows. Is there any other way to have the sub menu appear rather than click the double down arrows. It is happening on all my sites but here are a few you can see. </p>
<p><a href="http://www.krrphotography.com" rel="nofollow">http://www.krrphotography.com</a><br />
<a href="http://www.twinbeachplayers.com" rel="nofollow">http://www.twinbeachplayers.com</a><br />
<a href="http://www.letsfightback.com" rel="nofollow">http://www.letsfightback.com</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250014</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250014</link>
					<pubDate>Wed, 15 Apr 2015 08:39:21 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Thanks for writing in!</p>
<p>To achieve that, you can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
@media (max-width: 979px){
body .sub-menu.collapse {
      display:block;
}
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250316</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250316</link>
					<pubDate>Wed, 15 Apr 2015 15:23:54 +0000</pubDate>
					<dc:creator>DonWattz</dc:creator>

					<description>
						<![CDATA[
						<p>Not exactly what I was hoping for. I don&#8217;t want all the sub menu items to be open once they click on the menu button.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250458</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250458</link>
					<pubDate>Wed, 15 Apr 2015 18:13:09 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>In that case, you can try one of these two workarounds:</p>
<p><strong>1:</strong> Open only the first dropdown by default when the menu button is clicked (see: <a href="http://prntscr.com/6u4p7p" rel="nofollow">http://prntscr.com/6u4p7p</a>). To achieve it, add following JS code under <strong>Custom &gt; JavaScript</strong> in the Customizer:</p>
<pre><code>jQuery(document).ready(function($) {
  $(&#039;.mobile &gt; ul &gt; .menu-item-has-children .x-sub-toggle&#039;).first().click();
});
</code></pre>
<p><strong>2:</strong> Open the submenu items when clicking the whole parent link and not just the arrows. To achieve it, add following JS code under <strong>Custom &gt; JavaScript</strong> in the Customizer:</p>
<pre><code>// Expand Submenus on Parent Menu Click (for mobiles)
jQuery(document).ready(function($) {
   var subMenuLink = $(&#039;.x-navbar .mobile .x-nav li.menu-item-has-children &gt; a&#039;);
 
   subMenuLink.on(&#039;click touchstart&#039;, function(e) {
     e.preventDefault();
     var $this = $(this);
     $this.find(&#039;.x-sub-toggle&#039;).off(&#039;click touchstart&#039;);
     $this.closest(&#039;li.menu-item-has-children&#039;).toggleClass(&#039;x-active&#039;);
     $this.siblings(&#039;.sub-menu&#039;).slideToggle(300);
   });
});
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250462</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250462</link>
					<pubDate>Wed, 15 Apr 2015 18:16:37 +0000</pubDate>
					<dc:creator>DonWattz</dc:creator>

					<description>
						<![CDATA[
						<p>The second one is perfect!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250468</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-250468</link>
					<pubDate>Wed, 15 Apr 2015 18:25:12 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>Glad to hear that!</p>
<p>Let us know if you need anything else.</p>
<p>Thanks. Have a great day! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-883023</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-883023</link>
					<pubDate>Thu, 14 Apr 2016 20:34:05 +0000</pubDate>
					<dc:creator>nolasmiles</dc:creator>

					<description>
						<![CDATA[
						<p>This is yet another example of Themeco&#8217;s *amazing* support! I never would have imagined receiving customized CSS/JS for such a modest license fee. Blows my mind, 10/10 in my book.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-883742</guid>
					<title><![CDATA[Reply To: mobile menu dropdown]]></title>
					<link>https://theme.co/archive/forums/topic/mobile-menu-dropdown-2/#post-883742</link>
					<pubDate>Fri, 15 Apr 2016 06:35:54 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Your satisfaction is a great compliment for us.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

