<?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>Customising Submenus &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/customising-submenus/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/customising-submenus/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 17 Oct 2025 11:58:30 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-44155</guid>
					<title><![CDATA[Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-44155</link>
					<pubDate>Wed, 14 May 2014 03:16:49 +0000</pubDate>
					<dc:creator>Matt H</dc:creator>

					<description>
						<![CDATA[
						<p>Hi guys,</p>
<p>I&#8217;m having difficulty getting my submenus to appear the way I want.</p>
<p>The site I&#8217;m working on is <a href="http://www.billybingo.com.au" rel="nofollow">http://www.billybingo.com.au</a>, the problems im having with the submenus are:</p>
<p>1. submenus are the same background-color as the header. (I want to be change them independently of each other.)</p>
<p>2. submenu overlap vertically onto the nav bar, looks a bit messy, need to control the vertical position.</p>
<p>3. submenu appears to the left of the parent menu item, i&#8217;m trying to get the submenu to appear directly below</p>
<p>4. im trying to get the submenu items to light up when hovered over like in this image: <a href="http://billybingo.com.au/wp-content/uploads/2014/05/billylayout.png" rel="nofollow">http://billybingo.com.au/wp-content/uploads/2014/05/billylayout.png</a> (need to fix the margins around the menu items to make the whole box light up!)</p>
<p>basically that image is how i want it too look but I have no idea where to start?!</p>
<p>Thanks guys,<br />
Matt</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-44485</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-44485</link>
					<pubDate>Thu, 15 May 2014 00:00:21 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Matt,</p>
<p>Thank you for your queries! </p>
<p>These css can be place at customizer&#8217;s custom css or at child theme&#8217;s style.css</p>
<p>1. You have a css that force color on both navbar and submenu. In order to fix it, find something like this :</p>
<pre><code>.x-navbar, .x-navbar .sub-menu, .tp-bullets.simplebullets.navbar, .tp-bullets.simplebullets.navbar-old, .tp-leftarrow.default, .tp-rightarrow.default {
background-color: #66cc33 !important;
}</code></pre>
<p>And change it into :</p>
<pre><code>.x-navbar, .tp-bullets.simplebullets.navbar, .tp-bullets.simplebullets.navbar-old, .tp-leftarrow.default, .tp-rightarrow.default {
background-color: #66cc33 !important;
}
.x-navbar .sub-menu {
background-color: #00cc33 !important; /* YOUR SUBMENU BACKGROUND COLOR */
}</code></pre>
<p>2. It does not overlap on my view after changing submenu background color.<br />
3. May be you meant that it appears on parent&#8217;s right? Because of this default css :</p>
<pre><code>.masthead-inline .x-navbar .sub-menu {
left:auto;
right:0;
}</code></pre>
<p>Then you can add this css to override that default css.</p>
<pre><code>.masthead-inline .x-navbar .sub-menu {
right:auto!important;
left:0!important;
}</code></pre>
<p>4. You could add this css to remove your submenu&#8217;s margin.</p>
<pre><code>.x-navbar .sub-menu {
padding:0px!important;
}
.x-navbar .sub-menu li a {
padding: 1.75em!important;
}</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-45338</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-45338</link>
					<pubDate>Sat, 17 May 2014 06:57:39 +0000</pubDate>
					<dc:creator>Matt H</dc:creator>

					<description>
						<![CDATA[
						<p>thanks, worked perfectly!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-45534</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-45534</link>
					<pubDate>Sun, 18 May 2014 03:11:01 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome Matt.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-47831</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-47831</link>
					<pubDate>Fri, 23 May 2014 18:23:49 +0000</pubDate>
					<dc:creator>my u</dc:creator>

					<description>
						<![CDATA[
						<p>Worked for me 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-48115</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-48115</link>
					<pubDate>Sun, 25 May 2014 00:00:58 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Glad it worked. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-121321</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-121321</link>
					<pubDate>Wed, 08 Oct 2014 13:45:11 +0000</pubDate>
					<dc:creator>tamo</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, </p>
<p>I have the same Problem with the sub-menu, but i found out that the customizer adds the code: </p>
<p>.x-navbar, .x-navbar .sub-menu, .tp-bullets.simplebullets.navbar, .tp-bullets.simplebullets.navbar-old, .tp-leftarrow.default, .tp-rightarrow.default {<br />
background-color: #66cc33 !important;<br />
}</p>
<p>to the CSS, when you change the Renew -&gt; Navbar Background..</p>
<p>When i add something like: </p>
<p>.x-navbar .sub-menu {<br />
	background-color: red !important;<br />
} </p>
<p>to my Childtheme  CSS-file it doesn&#8217;t change anything, because the added CSS Code from the Customizer are above all other CSS code.</p>
<p>Any ideas? </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/customising-submenus/#post-121673</guid>
					<title><![CDATA[Reply To: Customising Submenus]]></title>
					<link>https://theme.co/archive/forums/topic/customising-submenus/#post-121673</link>
					<pubDate>Wed, 08 Oct 2014 21:03:38 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Tamo,</p>
<p>Please provide the URL of your website so we can take a look into your issue. I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn&#8217;t mind providing us with a little more clarification on what it is you&#8217;re wanting to do (perhaps some screenshots), we&#8217;ll be happy to provide you with a response once we have a better understanding of the situation.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

