<?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>How to keep current-menu-item navbar highlight when on sub menu pages &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 19 Oct 2025 15:58:08 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-31847</guid>
					<title><![CDATA[How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-31847</link>
					<pubDate>Thu, 10 Apr 2014 02:22:35 +0000</pubDate>
					<dc:creator>Jen H</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m using Integrity stack and notice that when on a child page (sub-menu), the parent page does not maintain current-menu-item styling in the main menu navbar. Can you tell me how (or is it possible) to do this?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-31986</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-31986</link>
					<pubDate>Thu, 10 Apr 2014 12:20:08 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Jen,</p>
<p>In the Customizer &gt; Custom &gt; CSS, please add the code below.</p>
<pre>
.current-menu-parent a.sf-with-ul {
  color: white !important;
  -webkit-box-shadow: 0 2px 0 0 #ffffff;
  box-shadow: 0 2px 0 0 #ffffff;
}
</pre>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32504</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32504</link>
					<pubDate>Fri, 11 Apr 2014 08:04:48 +0000</pubDate>
					<dc:creator>Jen H</dc:creator>

					<description>
						<![CDATA[
						<p>k thanks &#8211; this did the trick for me (yours was missing inset)</p>
<pre><code>
.current-menu-parent a.sf-with-ul { 
-webkit-box-shadow: 0 4px 0 0 #F21E29 inset; 
box-shadow: 0 4px 0 0 #F21E29 inset; 
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32508</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32508</link>
					<pubDate>Fri, 11 Apr 2014 08:51:11 +0000</pubDate>
					<dc:creator>Support</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Jen,</p>
<p>Glad that it works for you.</p>
<p>We appreciate that you replied with working code this really helps other users having same issue.</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32529</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32529</link>
					<pubDate>Fri, 11 Apr 2014 12:21:51 +0000</pubDate>
					<dc:creator>Ying-Fu</dc:creator>

					<description>
						<![CDATA[
						<p>Is this also possible for the menu type color since I got rid of the little bar?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32655</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-32655</link>
					<pubDate>Fri, 11 Apr 2014 19:26:24 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Ying-Fu,</p>
<p>Sure, just use <code>color: #abc123;</code> instead of the box shadow rules.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-33938</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-33938</link>
					<pubDate>Wed, 16 Apr 2014 16:26:18 +0000</pubDate>
					<dc:creator>Dani M</dc:creator>

					<description>
						<![CDATA[
						<p>This is exactly what i was looking for.</p>
<p>Only one issue though, i have some pages under more than one parent on the navigation bar. When i click one of these child pages both the menus are highlighted. Any way to only highlight the parent that was used to get to the page?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-34178</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-34178</link>
					<pubDate>Thu, 17 Apr 2014 00:25:33 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Dani,</p>
<p>Given the code above, you can change it into :</p>
<pre><code>.current-menu-parent &gt; a.sf-with-ul { 
-webkit-box-shadow: 0 4px 0 0 #F21E29 inset; 
box-shadow: 0 4px 0 0 #F21E29 inset; 
}
</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-214407</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-214407</link>
					<pubDate>Tue, 24 Feb 2015 23:52:08 +0000</pubDate>
					<dc:creator>ovation</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-214674</guid>
					<title><![CDATA[Reply To: How to keep current-menu-item navbar highlight when on sub menu pages]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-keep-current-menu-item-navbar-highlight-when-on-sub-menu-pages/#post-214674</link>
					<pubDate>Wed, 25 Feb 2015 08:10:32 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>please try this :</p>
<pre><code>li.current-page-ancestor a span {
color: red;
}</code></pre>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

