<?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: How do I change the nav link colors?</title>
		<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors</link>
		<description>Support Forum - Topic: How do I change the nav link colors?</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 09:39:27 +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/how-do-i-change-the-nav-link-colors" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5790</link>
			<pubDate>Fri, 01 Oct 2010 10:14:11 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5790@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes if you want to have all links in the same color. If you want to differentiate between current item and other links or i.e. change the color on a mouse hover you need to define different color values (not only white). But the css is correct.&#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jzapin on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5771</link>
			<pubDate>Fri, 01 Oct 2010 04:27:17 +0000</pubDate>
			<dc:creator>jzapin</dc:creator>
			<guid isPermaLink="false">5771@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;First, thanks for the reply.  The support here has been great.  Worth every penny just for the great support.&#60;/p&#62;
&#60;p&#62;Actually, I think what I was looking for required all three items.  This is what my code looks like now (in style2.css): &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .nav .current-menu-item a strong{
color:#FFF;
font-weight: bold;
}

#top .nav a{
color:#FFF;
font-weight: bold;
}

#top .nav a strong{
color:#FFF;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Is that correct?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5689</link>
			<pubDate>Thu, 30 Sep 2010 06:04:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5689@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just delete the current item class so that the code looks like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .nav a strong{
color:#444;
font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .nav a{
color:#444;
font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you want to change the color of the whole link (description + main link)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jzapin on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5637</link>
			<pubDate>Wed, 29 Sep 2010 04:23:35 +0000</pubDate>
			<dc:creator>jzapin</dc:creator>
			<guid isPermaLink="false">5637@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I made the change.  It fixed it for the &#34;current item&#34; but it didn't fix it for the non-current item.  That is still black:&#60;br /&#62;
&#60;a href=&#34;http://screencast.com/t/ZGZhZWFl&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/ZGZhZWFl&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Using Firebug, I found the line of code the changes that color (259):&#60;br /&#62;
&#60;code&#62;{h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a, strong{ color:#222; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;However, if I change it here, it changes it in lots of places including places I don't want (like bolded items within the copy).&#60;/p&#62;
&#60;p&#62;Is there another CSS setting?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5535</link>
			<pubDate>Mon, 27 Sep 2010 06:17:00 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5535@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open style2.css and search for following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .nav .current-menu-item a strong{
color:#444;
font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please change &#34;color&#34; to any value you like.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jzapin on "How do I change the nav link colors?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-change-the-nav-link-colors#post-5532</link>
			<pubDate>Mon, 27 Sep 2010 06:11:16 +0000</pubDate>
			<dc:creator>jzapin</dc:creator>
			<guid isPermaLink="false">5532@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm trying to change the link colors from the standard &#34;gray&#34; to be white.  How do I do that? &#60;/p&#62;
&#60;p&#62;To better explain what I'm trying to do, look at this &#60;a href=&#34;http://screencast.com/t/OGZhZmYxYWM&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/OGZhZmYxYWM&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The link to the site is: &#60;a href=&#34;http://pmags2.jzapin.com/&#34; rel=&#34;nofollow&#34;&#62;http://pmags2.jzapin.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
