<?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; Tag: colors - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/colors</link>
		<description>WordPress.com Forums &#187; Tag: colors - Recent Posts</description>
		<language>en</language>
		<pubDate>Sun, 26 May 2013 02:00:52 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/colors" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1275997</link>
			<pubDate>Wed, 22 May 2013 20:16:32 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1275997@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It's fun isn't it?? I love it.</p>
<p>I hope you're having fun with your blog! The sock monkey reading a book in the header image on <a href="http://delightfulchildrensbooks.com/" rel="nofollow">http://delightfulchildrensbooks.com/</a> is kind of awesome. :)
</p>
]]></description>
					</item>
		<item>
			<title>arb34 on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1273461</link>
			<pubDate>Tue, 21 May 2013 10:47:31 +0000</pubDate>
			<dc:creator>arb34</dc:creator>
			<guid isPermaLink="false">1273461@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you! That worked. I learned a very small amount of CSS when I created my blog a few years ago, and I now forget everything. I appreciate your help. -Amy
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1272716</link>
			<pubDate>Mon, 20 May 2013 19:54:17 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1272716@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're using a few rules like this:</p>
<pre><code>ul.xoxo li#twitter-3 h3 a {
	color: #080
}</code></pre>
<p>And that is very specific, so it only applies to list containers with a class of "xoxo" and list items with an id of "twitter-3" followed by an h3 heading that is a link. That particular block of CSS doesn't actually affect any of the widget titles on your blog at the moment because none of the titles are links.</p>
<p>If you use something more general like this instead:</p>
<pre><code>.widget-title {
	color: #080;
}</code></pre>
<p>It will cover all your current link titles. If you were to add a widget in the future that has a title that is also a link, this would probably cover both types of titles:</p>
<pre><code>.widget-title,
.widget-title a {
	color: #080;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1271684</link>
			<pubDate>Mon, 20 May 2013 01:57:11 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1271684@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome.
</p>
]]></description>
					</item>
		<item>
			<title>arb34 on "color of a widget heading"</title>
			<link>http://en.forums.wordpress.com/topic/color-of-a-widget-heading#post-1271609</link>
			<pubDate>Sun, 19 May 2013 23:53:07 +0000</pubDate>
			<dc:creator>arb34</dc:creator>
			<guid isPermaLink="false">1271609@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The headings of all of my widgets should be (and used to be) green. Now, the heading of one of my widgets -- the tag cloud widget -- is black instead of green. I am not sure what's up. It has been awhile since I wrote this code to make the headings green:</p>
<p>ul.xoxo li#wp_tag_cloud div a {<br />
text-decoration:none;<br />
}</p>
<p>ul.xoxo li#wp_tag_cloud h3 {<br />
color:#008800;<br />
}</p>
<p>Can you figure out what's up?</p>
<p>Thank you for your help!<br />
Amy
</p>
]]></description>
					</item>
		<item>
			<title>deborahvanderzel on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270978</link>
			<pubDate>Sun, 19 May 2013 03:41:14 +0000</pubDate>
			<dc:creator>deborahvanderzel</dc:creator>
			<guid isPermaLink="false">1270978@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Path it worked!<br />
thank so very much!<br />
Sincerely,<br />
Deborah
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270900</link>
			<pubDate>Sun, 19 May 2013 00:11:06 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1270900@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>This code,</p>
<pre><code>body.custom-colors #page, body.custom-background.custom-background-image-empty #page {
background: #FFFFFF;
}</code></pre>
<p>has correct syntax. Did you perhaps miss the ending bracket? I just tried it again in Firebug in Firefox and it worked.</p>
<p>Alternately you can go with the following code.</p>
<p>#page {<br />
background: #FFFFFF !important;<br />
}`</p>
<p>It isn't a good idea to write code that requires the "!important" attribute, but it should work. The CSS editor will whine at you with a warning though.
</p>
]]></description>
					</item>
		<item>
			<title>deborahvanderzel on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270609</link>
			<pubDate>Sat, 18 May 2013 18:18:08 +0000</pubDate>
			<dc:creator>deborahvanderzel</dc:creator>
			<guid isPermaLink="false">1270609@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Path....<br />
It did not work..... it was asking for pipes and L brackets<br />
sheesh... I am out of my comfort zone.... I wish I new code but I don't</p>
<p>would you be willing to go in for me? If so please call me 760-945-7045</p>
<p>Thank you
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270531</link>
			<pubDate>Sat, 18 May 2013 16:56:23 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1270531@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome and let us know if you have any problems.
</p>
]]></description>
					</item>
		<item>
			<title>deborahvanderzel on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270515</link>
			<pubDate>Sat, 18 May 2013 16:43:05 +0000</pubDate>
			<dc:creator>deborahvanderzel</dc:creator>
			<guid isPermaLink="false">1270515@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you,<br />
I have never ventured into the CSS, but I will give it a go<br />
appreciate the response
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1270141</link>
			<pubDate>Sat, 18 May 2013 03:31:51 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1270141@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Add the following to your custom CSS and edit the color code as desired. I've used #FFFFFF (white) as a placeholder for you.</p>
<pre><code>body.custom-colors #page, body.custom-background.custom-background-image-empty #page {
background: #FFFFFF;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>deborahvanderzel on "Sundance theme page color"</title>
			<link>http://en.forums.wordpress.com/topic/sundance-theme-page-color#post-1269925</link>
			<pubDate>Fri, 17 May 2013 22:26:30 +0000</pubDate>
			<dc:creator>deborahvanderzel</dc:creator>
			<guid isPermaLink="false">1269925@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have the sundance theme I don't know how to change the color of the page</p>
<p>I can change the background,  fonts, pictures,, headers add links, etc<br />
but I can't figure out how to get rid of the pink  page color<br />
please help
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "failure customization tools"</title>
			<link>http://en.forums.wordpress.com/topic/failure-customization-tools#post-1269341</link>
			<pubDate>Fri, 17 May 2013 16:41:24 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1269341@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Did you purchase a cusom design upgrade?</p>
<p>No changes you try out aside from those such as Custom Background, Custom Header and Theme Options which are stated on the theme description pages for each theme will be visible to visitors unless you purchase an annually renewable custom design upgrade?<br />
<a href="http://en.support.wordpress.com/custom-design/" rel="nofollow">http://en.support.wordpress.com/custom-design/</a><br />
<a href="http://en.support.wordpress.com/custom-design/editing-css/" rel="nofollow">http://en.support.wordpress.com/custom-design/editing-css/</a><br />
<a href="http://en.support.wordpress.com/custom-design/#custom-fonts" rel="nofollow">http://en.support.wordpress.com/custom-design/#custom-fonts</a><br />
<a href="http://en.support.wordpress.com/custom-design/#custom-colors" rel="nofollow">http://en.support.wordpress.com/custom-design/#custom-colors</a></p>
<p>When using the theme customizer please be sure you are using one of the browsers and versions found here <a href="http://browsehappy.com" rel="nofollow">http://browsehappy.com</a> and also be sure you have enabled third party cookies. <a href="http://en.support.wordpress.com/third-party-cookies/" rel="nofollow">http://en.support.wordpress.com/third-party-cookies/</a></p>
<p>NOTE: If you do not have a CSS upgrade then skip using the theme customizer. All of the very same functions can be accessed from your dashboard.<br />
Appearance &#62; Header<br />
Appearance &#62; Background<br />
Appearance &#62; Theme Options (applicable only to some themes)<br />
Settings &#62; Reading (set a static front page)<br />
Site Title and Tagline &#62; Settings &#62; General
</p>
]]></description>
					</item>
		<item>
			<title>danarkade on "failure customization tools"</title>
			<link>http://en.forums.wordpress.com/topic/failure-customization-tools#post-1268807</link>
			<pubDate>Fri, 17 May 2013 05:02:17 +0000</pubDate>
			<dc:creator>danarkade</dc:creator>
			<guid isPermaLink="false">1268807@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I tried to change the colors and the bottom of my blog, but after doing so, the changes are not saved. the theme I use is skeptical.
</p>
]]></description>
					</item>
		<item>
			<title>squeezemedia on "*Paid* customization isn&#039;t Working Properly on [Bueno] or other themes!"</title>
			<link>http://en.forums.wordpress.com/topic/paid-customization-isnt-working-properly-on-bueno-or-other-themes#post-1265767</link>
			<pubDate>Tue, 14 May 2013 22:11:36 +0000</pubDate>
			<dc:creator>squeezemedia</dc:creator>
			<guid isPermaLink="false">1265767@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I paid to have customization of the Bueno theme.  The tool sidebar to customize my website isn't working properly.  When my cursor hovers over a color selection the side bar snaps back to being closed and I cannot click on a color.  This also happens with other themes.  This was not worth my money.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Why did my color theme change and why can&#039;t I fix it?"</title>
			<link>http://en.forums.wordpress.com/topic/why-did-my-color-theme-change-and-why-cant-i-fix-it#post-1262028</link>
			<pubDate>Fri, 10 May 2013 21:32:31 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1262028@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Note that Themes Staff have been working on the Bueno theme making changes and several bloggers using it have been posting with CSS issues as a result.
</p>
]]></description>
					</item>
		<item>
			<title>lorelle on "Why did my color theme change and why can&#039;t I fix it?"</title>
			<link>http://en.forums.wordpress.com/topic/why-did-my-color-theme-change-and-why-cant-i-fix-it#post-1262025</link>
			<pubDate>Fri, 10 May 2013 21:30:41 +0000</pubDate>
			<dc:creator>lorelle</dc:creator>
			<guid isPermaLink="false">1262025@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>If the WordPress Theme was updated, there may have been a chance in the settings.</p>
<p>I have two possible ideas on this. </p>
<p>1. When you view the front of your site, make sure your browser's cache is cleared. Go to Tools or Settings in your browser and look for information on how to clear the browser cache. This removes the saved versions and information of a recently visited web page so it generates a "fresh" version. Some browsers do not completely reload a web page with reload or refresh and this ensures a fresh view. If it is the same, and not what you want, try step two.</p>
<p>2. There are many HTML color charts online. Search for one and find the exact color you wish to have as your WordPress Theme color. Copy the color code, a hexadecimal alphanumeric number such as #123ABC. Paste it into the color selector directly and save the choice. Make sure you click Update or Save Changes on the Theme option screen. Check the front end of your site and see if it sets to the right color. </p>
<p>If these do not work, please contact support again and a staff member may have to look into this closer. </p>
<p>Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>sixhours on "Theme colors have changed! Help!"</title>
			<link>http://en.forums.wordpress.com/topic/theme-colors-have-changed-help#post-1261599</link>
			<pubDate>Fri, 10 May 2013 15:09:32 +0000</pubDate>
			<dc:creator>sixhours</dc:creator>
			<guid isPermaLink="false">1261599@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hmm, you may need to re-set the color for the "Footer Background &#38; Borders" area in Custom Colors. Give that a try and I think the border colors and footer area will be fixed.
</p>
]]></description>
					</item>
		<item>
			<title>maailmaonsun on "Theme colors have changed! Help!"</title>
			<link>http://en.forums.wordpress.com/topic/theme-colors-have-changed-help#post-1261570</link>
			<pubDate>Fri, 10 May 2013 14:40:16 +0000</pubDate>
			<dc:creator>maailmaonsun</dc:creator>
			<guid isPermaLink="false">1261570@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you! All the frames of image and the background of my site is still pink, but those dots with date is showing black.
</p>
]]></description>
					</item>
		<item>
			<title>sixhours on "Theme colors have changed! Help!"</title>
			<link>http://en.forums.wordpress.com/topic/theme-colors-have-changed-help#post-1261567</link>
			<pubDate>Fri, 10 May 2013 14:35:06 +0000</pubDate>
			<dc:creator>sixhours</dc:creator>
			<guid isPermaLink="false">1261567@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Howdy! It looks like this was a bug on our end. Thanks for bringing it to our attention! Your chosen colors should now appear instead of the theme's defaults.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "changing font color"</title>
			<link>http://en.forums.wordpress.com/topic/changing-font-color-3#post-1261557</link>
			<pubDate>Fri, 10 May 2013 14:08:30 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1261557@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Give this a try.</p>
<pre><code>body, button, input, select, textarea {
color: #000000;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>bissellv on "Why did my color theme change and why can&#039;t I fix it?"</title>
			<link>http://en.forums.wordpress.com/topic/why-did-my-color-theme-change-and-why-cant-i-fix-it#post-1261553</link>
			<pubDate>Fri, 10 May 2013 14:06:31 +0000</pubDate>
			<dc:creator>bissellv</dc:creator>
			<guid isPermaLink="false">1261553@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>My color theme changed suddenly without me editing it, and I can't edit it back even though the color palette is correct in my customize menu.</p>
<p>The primary color on my page is now coral pink when before it was a dark purple.</p>
<p>Please help!
</p>
]]></description>
					</item>
		<item>
			<title>elizabethdouglas on "changing font color"</title>
			<link>http://en.forums.wordpress.com/topic/changing-font-color-3#post-1261493</link>
			<pubDate>Fri, 10 May 2013 12:09:12 +0000</pubDate>
			<dc:creator>elizabethdouglas</dc:creator>
			<guid isPermaLink="false">1261493@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I would like to change the font color of the main text of my blog posts to black.  But I can't figure out how to do it.
</p>
]]></description>
					</item>
		<item>
			<title>maailmaonsun on "Theme colors have changed! Help!"</title>
			<link>http://en.forums.wordpress.com/topic/theme-colors-have-changed-help#post-1261474</link>
			<pubDate>Fri, 10 May 2013 10:54:58 +0000</pubDate>
			<dc:creator>maailmaonsun</dc:creator>
			<guid isPermaLink="false">1261474@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Couple nights ago all the colors of my blog (links, frames, background, lines etc) have changed from black and white to pink. And when I try to change them back the changes are not appearing to my blog. I´m using theme bueno and I have bought custom desing 5 months ago, so there is still 7 months left..</p>
<p>Please, please help me, I really hate the pink appearence!</p>
<p>Best Regards,</p>
<p>Maiju
</p>
]]></description>
					</item>
		<item>
			<title>kalieanne2013 on "Bueno theme: colors reverted to default and won&#039;t allow change?"</title>
			<link>http://en.forums.wordpress.com/topic/bueno-theme-colors-reverted-to-default-and-wont-allow-change#post-1260033</link>
			<pubDate>Wed, 08 May 2013 23:00:11 +0000</pubDate>
			<dc:creator>kalieanne2013</dc:creator>
			<guid isPermaLink="false">1260033@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>This morning I noticed the link and footer colors reverted to the default colors. Under 'customization' the colors I chose are correct but when I view the sight it remains pink?! What happened and how do I fix it?
</p>
]]></description>
					</item>
		<item>
			<title>kalieanne2013 on "Colors aren&#039;t published as selected???"</title>
			<link>http://en.forums.wordpress.com/topic/colors-arent-published-as-selected#post-1259791</link>
			<pubDate>Wed, 08 May 2013 16:26:54 +0000</pubDate>
			<dc:creator>kalieanne2013</dc:creator>
			<guid isPermaLink="false">1259791@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I noticed this morning that the footer and link colors looked 'off'. I checked the settings are as they should be. After resetting and saving them, they are still not correct. What gives?
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "adelle theme - hover colors"</title>
			<link>http://en.forums.wordpress.com/topic/adelle-theme-hover-colors#post-1257566</link>
			<pubDate>Mon, 06 May 2013 19:44:54 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1257566@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>ok, thanks for all your help! do i understand correctly that if i've gone and coded body text in a color (black) directly i cannot set those words to hover in another color through the css?
</p></blockquote>
<p>It's not completely impossible to color the text with CSS *after* you code the body text (depending on the HTML you used and exactly what you want to change), but it could get really messy and confusing really fast, so I wouldn't recommend it.
</p>
]]></description>
					</item>
		<item>
			<title>kirbylynelle on "adelle theme - hover colors"</title>
			<link>http://en.forums.wordpress.com/topic/adelle-theme-hover-colors#post-1254657</link>
			<pubDate>Fri, 03 May 2013 18:28:10 +0000</pubDate>
			<dc:creator>kirbylynelle</dc:creator>
			<guid isPermaLink="false">1254657@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>ok, thanks for all your help! do i understand correctly that if i've gone and coded body text in a color (black) directly i cannot set those words to hover in another color through the css? my end goal was to be able to use black and bolded text for links and then have those hover in yellow. </p>
<p>i did go in and re-do the messy coding you mentioned!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "adelle theme - hover colors"</title>
			<link>http://en.forums.wordpress.com/topic/adelle-theme-hover-colors#post-1254608</link>
			<pubDate>Fri, 03 May 2013 18:04:25 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1254608@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I think this is because you have HTML coded into the posts directly.</p>
<p>For example, I looked at this post:<br />
<a href="http://thekrispybits.wordpress.com/2013/04/30/capella-breakfast-on-the-canal/" rel="nofollow">http://thekrispybits.wordpress.com/2013/04/30/capella-breakfast-on-the-canal/</a></p>
<p>In Text mode:<br />
<a href="http://en.support.wordpress.com/editors/#text-editor" rel="nofollow">http://en.support.wordpress.com/editors/#text-editor</a></p>
<p>And found the HTML for first link for the text "Capella"—here's what it's set to:</p>
<p><code>&lt;span style=&quot;color: #000000;&quot;&gt;&lt;a href=&quot;http://www.facebook.com/pages/Capella-Washington-DC-Georgetown/243280872449673&quot;&gt;&lt;span style=&quot;color: #000000;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000;&quot;&gt;Capella&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;</code></p>
<p>That's really messy. It looks like you used the visual editor to change the colors directly a whole bunch of times. That, or you copy and pasted the content from another source and the underlying HTML came along with it. Regardless of how it got like that, you're likely to have a lot of trouble applying CSS to messy HTML like that, and I would recommend cleaning up the HTML. In the case of the link above, I would change it to:</p>
<p><code>&lt;a href=&quot;http://www.facebook.com/pages/Capella-Washington-DC-Georgetown/243280872449673&quot;&gt;Capella&lt;/a&gt;</code></p>
<p>Try editing a few of the links so they're formatted correctly.</p>
<p>Also, the CSS you posted has a duplicate/conflicting rule in it. You've added ".entry-content a:hover" twice. If you want the links to be black by default, use ".entry-content a" instead of ".entry-content a:hover" in the first rule.
</p>
]]></description>
					</item>
		<item>
			<title>kirbylynelle on "adelle theme - hover colors"</title>
			<link>http://en.forums.wordpress.com/topic/adelle-theme-hover-colors#post-1254465</link>
			<pubDate>Fri, 03 May 2013 16:59:17 +0000</pubDate>
			<dc:creator>kirbylynelle</dc:creator>
			<guid isPermaLink="false">1254465@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>thanks! i plugged in your code like this:</p>
<p>.entry-meta a:hover,<br />
.entry-content a:hover {<br />
    color: #000000;<br />
}<br />
.entry-content a:hover {<br />
    color: #fac32d;<br />
}</p>
<p>... but the links within the post aren't hovering any different. the #fac32d is the piece that's not working. the #000000 is just fine.
</p>
]]></description>
					</item>

	</channel>
</rss>
