<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Current menu Item - CSS Rule</title>
		<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule</link>
		<description>Support Forum - Topic: Current menu Item - CSS Rule</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 11:34:34 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/current-menu-item-css-rule" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67490</link>
			<pubDate>Wed, 25 Jul 2012 01:32:19 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">67490@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey ragudei,&#60;/p&#62;
&#60;p&#62;Thanks for helping. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>radugidei on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67342</link>
			<pubDate>Tue, 24 Jul 2012 09:05:44 +0000</pubDate>
			<dc:creator>radugidei</dc:creator>
			<guid isPermaLink="false">67342@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;this is the HTML source that you need to take a look at (example on Policies page)&#60;br /&#62;
&#60;code&#62;&#38;lt;div class=&#34;menu-topnav-container&#34;&#38;gt;&#60;br /&#62;
&#38;lt;ul id=&#34;menu-topnav-1&#34; class=&#34;menu&#34;&#38;gt;&#60;br /&#62;
&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-3816&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/&#34;&#62;About Us&#60;/a&#62;&#60;br /&#62;
&#38;lt;ul class=&#34;sub-menu&#34;&#38;gt;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page menu-item-3614&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/why-choose-us/&#34;&#62;Why Choose Us?&#60;/a&#62;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-15 current_page_item menu-item-3615&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/about-us/policies/&#34;&#62;Policies&#60;/a&#62;&#60;br /&#62;
	&#38;lt;li class=&#34;menu-item menu-item-type-post_type menu-item-object-page menu-item-3645&#34;&#38;gt;&#60;a href=&#34;http://sharetel.com.au/contact-us/&#34;&#62;Contact Us&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The problem is that your CSS code doesn't seem to target any of those classes/IDs, more specifically, the #nav_menu-4 id.&#60;/p&#62;
&#60;p&#62;try this :&#60;br /&#62;
&#60;code&#62;.menu-topnav-container ul:first-child &#38;gt; li.current_page_item &#38;gt; a{&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
background: #f0b70c !important;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
border-radius: 3px;&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;or&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.menu-topnav-container ul.submenu &#38;gt; li.current_page_item &#38;gt; a{&#60;br /&#62;
...&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;if it doesn't work , try using only this :&#60;br /&#62;
&#60;code&#62;.current_page_item {&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
background: #f0b70c !important;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
border-radius: 3px;&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;hope it helps
&#60;/p&#62;</description>
		</item>
		<item>
			<title>reganfrank on "Current menu Item - CSS Rule"</title>
			<link>http://www.kriesi.at/support/topic/current-menu-item-css-rule#post-67311</link>
			<pubDate>Tue, 24 Jul 2012 05:34:56 +0000</pubDate>
			<dc:creator>reganfrank</dc:creator>
			<guid isPermaLink="false">67311@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have added a custom css. rule to highlight the current page/menu item.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*Sidebar Nav Menu - Current Menu Items*/
#nav_menu-4.widget_nav_menu .current-menu-item &#38;gt; a, #nav_menu-4.widget_nav_menu .current_page_item &#38;gt; a {
    font-weight: bold;
	background: #f0b70c !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Unfortunately, when I set it on my local system it works fine, but on the live server it does not display.&#60;/p&#62;
&#60;p&#62;Am I missing something?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bit.ly/MCdWL8&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/MCdWL8&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
