<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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>WordPress.com Forums &#187; Topic: Change Font Size for Primary Menu</title>
		<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu</link>
		<description>WordPress.com Forums &#187; Topic: Change Font Size for Primary Menu</description>
		<language>en</language>
		<pubDate>Thu, 20 Jun 2013 02:00:06 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/topic/change-font-size-for-primary-menu" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Change Font Size for Primary Menu"</title>
			<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu#post-1158346</link>
			<pubDate>Wed, 20 Feb 2013 18:40:35 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1158346@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>I would also like to change the color of the font under the posts where it says the dates and number of comments. Basically everything on my page that has that faded grey color I would like to change to black.</p></blockquote>
<p>That color code is #aaa. To change everything that's using that color code to something else, open your theme's stylesheet which you can find by clicking "Edit" next to "Mode: Add-on" on your Appearance &#8594; Custom Design &#8594; CSS page.</p>
<p>Here is your current theme stylesheet link:<br />
<a href="https://s1.wp.com/wp-content/themes/pub/oxygen/style.css?m=1360153398g&#038;minify=false" rel="nofollow">https://s1.wp.com/wp-content/themes/pub/oxygen/style.css?m=1360153398g&#038;minify=false</a></p>
<p>Search for #aaa, and copy all of the selectors that have that set as the color (example: ".entry-summary .page-links") and make them into a comma-separated list and then add a CSS rule like this:</p>
<pre><code>YOUR_LIST_OF_SELECTORS {
	color: #000;
}</code></pre>
<p>Replace YOUR_LIST_OF_SELECTORS with the list you found when you searched the stylesheet.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Change Font Size for Primary Menu"</title>
			<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu#post-1158343</link>
			<pubDate>Wed, 20 Feb 2013 18:36:29 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1158343@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>One more thing, how would I change the font color of the widget title to black?</p></blockquote>
<p>You were close! In your theme, the class name for widget titles is "widgettitle" not "widget-title" so you would want to set it up like this:</p>
<pre><code>.widgettitle,
.widgettitle a {
	color: #000;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "Change Font Size for Primary Menu"</title>
			<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu#post-1158341</link>
			<pubDate>Wed, 20 Feb 2013 18:33:38 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1158341@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>I'd like to change the font size for my primary menu but I am having no luck doing this in the CSS style editor.</p></blockquote>
<p>I checked out your blog at <a href="http://dappermanstyle.wordpress.com/" rel="nofollow">http://dappermanstyle.wordpress.com/</a> and I see that it is currently using the Oxygen theme.</p>
<p>You can use the following CSS as a starting point for changing any of the colors associated with the main menu in the Oxygen theme by adjusting the color codes and adding the final CSS to your Appearance &#8594; Custom Design &#8594; CSS editor:</p>
<pre><code>.main-navigation ul ul {
	background-color: #fff;
}
.main-navigation a,
.main-navigation &gt; div &gt; ul &gt; li &gt; a {
	color: #f00;
}
.main-navigation a:hover {
	color: #0ff;
}
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a {
	color: #b00;
}
.main-navigation li.current_page_item li a:hover,
.main-navigation li.current-menu-item li a:hover,
.main-navigation li li.current_page_item a,
.main-navigation li li.current-menu-item a {
	color: #b00;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>dappermanstyle on "Change Font Size for Primary Menu"</title>
			<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu#post-1152484</link>
			<pubDate>Thu, 14 Feb 2013 08:09:25 +0000</pubDate>
			<dc:creator>dappermanstyle</dc:creator>
			<guid isPermaLink="false">1152484@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>One more thing, how would I change the font color of the widget title to black? I have been trying:</p>
<p>.widget-title a {<br />
	color: #000;<br />
}</p>
<p>but it has not been working. </p>
<p>I would also like to change the color of the font under the posts where it says the dates and number of comments. Basically everything on my page that has that faded grey color I would like to change to black.</p>
<p>Thank you so much in advance.
</p>
]]></description>
					</item>
		<item>
			<title>dappermanstyle on "Change Font Size for Primary Menu"</title>
			<link>http://en.forums.wordpress.com/topic/change-font-size-for-primary-menu#post-1152458</link>
			<pubDate>Thu, 14 Feb 2013 06:33:08 +0000</pubDate>
			<dc:creator>dappermanstyle</dc:creator>
			<guid isPermaLink="false">1152458@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'd like to change the font size for my primary menu but I am having no luck doing this in the CSS style editor.</p>
<p>Any suggestions on what code to enter?</p>
<p>Thanks!
</p>
]]></description>
					</item>

	</channel>
</rss>
