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

		<item>
			<title>thesacredpath on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238653</link>
			<pubDate>Tue, 23 Apr 2013 18:43:58 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1238653@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Keep working at it, your site looks very good. CSS is a lot of fun and it just takes some time working with it. I've been doing quite a lot of it now for several years, and I still learn something new everyday.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238649</link>
			<pubDate>Tue, 23 Apr 2013 18:42:29 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1238649@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>With more and more of the CSS3 capabilities being opened up to us, we are getting more and more tools to make our sites look the way we want them. The downside, if one wants to think of it that way, is that the CSS becomes more complex and sometimes harder to figure out exactly what you need to change. In this case, compare my code below with yours. I went to a more specific class (.entry) and note where I put the "hover". I also had to use the !important qualifier. I typically try and stay away from using that, but couldn't see a way around it in this case.</p>
<pre><code>.entry a:hover.more-link {
color: #a8a8a8 !important;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238594</link>
			<pubDate>Tue, 23 Apr 2013 18:13:45 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1238594@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you thesacredpath! That's exactly it. </p>
<p>I'm trying to learn how to do this myself, but am not quite there yet. For example, I'd like to apply the same grey hover to the "Read More" links. </p>
<p>1. I ctrl-click, inspect elements. It tells me the "Read More" is connected to "a class="more-link"". </p>
<p>2. So I insert CSS that says:</p>
<p>#content a.more-link a:hover {<br />
	color: #a8a8a8;<br />
}</p>
<p>...but it doesn't work. Any ideas which wrong steps I'm taking? Very grateful for your help and patience here.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238563</link>
			<pubDate>Tue, 23 Apr 2013 17:57:22 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1238563@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Add this. I've used the same grey hover color you have on the featured slider titles.</p>
<pre><code>#content .title a:hover {
color: #a8a8a8;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238200</link>
			<pubDate>Tue, 23 Apr 2013 15:13:58 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1238200@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for taking the time to help, designsimply. </p>
<p>An example of the link text I'm having trouble with is here:</p>
<p><a href="http://www.barrycooper.com" rel="nofollow">http://www.barrycooper.com</a></p>
<p>If you look at the heading "No Pain Was Spared Him. No Blessing Will Be Denied You", you'll see it's blue, with no hover color. Compare this to the behaviour of the Featured Article links above, and you'll see how I'd like it to behave. </p>
<p>When I do "inspect element", this is the code that is highlighted:</p>
<p><a>​No Pain Was Spared Him. No Blessing Will Be Denied You.​</a>​</p>
<p>Grateful for your help.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1238153</link>
			<pubDate>Tue, 23 Apr 2013 14:42:49 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1238153@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>I've copied and pasted below my custom CSS, so you can see where I'm going wrong.</p></blockquote>
<p>You should only paste short snippets of CSS in forums if needed. CSS can be viewed through the "Inspect Element" option in a browser any time. Also, seeing the current custom CSS won't help with determining what needs to change for links elsewhere, you may need to create new custom CSS for those links depending on which specific links you're looking at.</p>
<blockquote><p>But I'm still having trouble making the links elsewhere on the site behave the same way.</p></blockquote>
<p>In this case, I would actually recommend viewing the original theme CSS file. Here is a direct link:<br />
<a href="https://s1.wp.com/wp-content/themes/premium/traction/style.css?m=1355330217g&#038;minify=false" rel="nofollow">https://s1.wp.com/wp-content/themes/premium/traction/style.css?m=1355330217g&#038;minify=false</a></p>
<p>Look through that CSS for any "color" properties and note the selectors. If you want to find and replace a specific color code, you can search for just that code, copy all the relevant selectors into a comma-separated list, and paste that list followed by a new color property. Here is an example to illustrate:</p>
<pre><code>YOUR_LIST_OF_SELECTORS
     {
           color: #f00;
     }</code></pre>
<p>Replace #f00 with a color code of your choice.</p>
<p>Be careful when doing a full find and replace because there may be exceptions to colors you want to change (i.e. a specialized widget that has a dark background and needs to keep its light colored text). Sometimes it just takes a little experimentation to find which combination of selectors will work best.</p>
<p>This may also help when it comes to differentiating visited vs unvisited links:<br />
<a href="http://css-tricks.com/snippets/css/link-pseudo-classes-in-order/" rel="nofollow">http://css-tricks.com/snippets/css/link-pseudo-classes-in-order/</a></p>
<p>If you still need help, can you link to a specific example and point out the link text of a link you're still having trouble with and mention what you found when you used the "Inspect Element" option on it?
</p>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1237978</link>
			<pubDate>Tue, 23 Apr 2013 12:07:20 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1237978@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Anyone willing to ride to the rescue this St George's Day?
</p>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1232192</link>
			<pubDate>Fri, 19 Apr 2013 11:13:40 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1232192@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks so much designsimply. The "inspect element" option was something I didn't know about.</p>
<p>I did manage to make the "Featured" bar at the top behave as I'd like (ie links are light blue, hover is grey). </p>
<p>But I'm still having trouble making the links elsewhere on the site behave the same way. </p>
<p>I've copied and pasted below my custom CSS, so you can see where I'm going wrong.   </p>
<p>body {<br />
	font-family: "museo-1", "museo-2", serif;<br />
	line-height: 2.2em;<br />
}</p>
<p>div.feature-main h3 a:link,<br />
div.feature-main h3 a:visited,<br />
div.feature-sidebar ul li a strong {<br />
    color: #285A86;<br />
}</p>
<p>div.feature-main h3 a:hover,<br />
div.feature-sidebar ul li a strong:hover<br />
{<br />
	color: #A8A8A8;<br />
}</p>
<p>h2 a:link,<br />
h2 a:visited<br />
{<br />
    color: #285A86;<br />
}</p>
<p>h2 a:hover<br />
{<br />
    color: #A8A8A8;<br />
}</p>
<p>#content a:link {<br />
	color: #285A86;<br />
}</p>
<p>#content a:link a:hover {<br />
	color: #A8A8A8;<br />
}</p>
<p>#copyright {<br />
	display: none;<br />
}</p>
<p>div.cats {<br />
	display: none;<br />
}</p>
<p>div.tags {<br />
	display: none;<br />
}</p>
<p>#pg-nav-bg {<br />
	display: none;<br />
}</p>
<p>p + p {<br />
	margin-top: 1.5em;<br />
}</p>
<p>ul li.widget ul.tweets li {<br />
	padding: 1px 0 10px;<br />
} </p>
<p>Would be very grateful if someone could put me out of my misery :)
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1224997</link>
			<pubDate>Mon, 15 Apr 2013 15:35:28 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1224997@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>It's possible for a theme to have additional rules for specific links. In order to change links like that, you can right-click on the element and select the "Inspect Element" option and the CSS rules that have been applied will be on the right. You should be able to find the specific selector you need to change the element you clicked on from there.</p>
<p>For example, to change the color of the Featured Articles links on the right in the Traction theme, find this in your custom CSS:</p>
<pre><code>div.feature-main h3 a:link,
div.feature-main h3 a:visited {
	color: #285A86
}</code></pre>
<p>And add this "div.feature-sidebar ul li a strong" so that the new rule looks like this:</p>
<pre><code>div.feature-main h3 a:link,
div.feature-main h3 a:visited,
div.feature-sidebar ul li a strong {
	color: #285A86
}</code></pre>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1215371</link>
			<pubDate>Tue, 09 Apr 2013 09:02:35 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1215371@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for the help, tsp. </p>
<p>You're right - I just copied and pasted without changing the hex codes. I've changed them now, as follows, but am still having problems:</p>
<p>div.feature-main h3 a:link, div.feature-main h3 a:visited {<br />
	color: #285A86;<br />
}</p>
<p>div.feature-main h3 a:hover {<br />
	color: #A8A8A8;<br />
}</p>
<p>#content a:link {<br />
	color: #285A86;<br />
}</p>
<p>#content a:link a:hover {<br />
    color: #A8A8A8;<br />
}</p>
<p>...what I'd like to achieve is for all links to behave in the same way. Links are blue, hover is grey. (That includes the links immediately under "featured articles", which is currently staying stubbornly black, and also any sidebar links). </p>
<p>Grateful for your help with this!
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1214681</link>
			<pubDate>Mon, 08 Apr 2013 20:27:39 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1214681@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Did you edit the color codes in the stuff I gave you after you pasted it in?</p>
<p>What is the blue color code you want to use? Did you want to use a solid black (#000000) or a dark grey such as #333333?
</p>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1214522</link>
			<pubDate>Mon, 08 Apr 2013 18:57:07 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1214522@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks thesacredpath for such a swift response!</p>
<p>I've added the CSS code but it doesn't seem to have changed the appearance. </p>
<p>Ideally what I'd like is for all links to be navy blue, turning black when you hover the mouse over them.
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1214384</link>
			<pubDate>Mon, 08 Apr 2013 17:59:37 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1214384@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>See if this gets you what you want. We can then work from there if it doesn't get you where you want to go.</p>
<p>Slider:</p>
<pre><code>div.feature-main h3 a:link, div.feature-main h3 a:visited {
color: #444444;
}

div.feature-main h3 a:hover {
color: #285A86;
}</code></pre>
<p>Recent articles:</p>
<pre><code>#content a:link {
color: #1D2471;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>barrygcooper on "How to make link/hover color uniform throughout Traction theme?"</title>
			<link>http://en.forums.wordpress.com/topic/how-to-make-linkhover-color-uniform-throughout-traction-theme#post-1214347</link>
			<pubDate>Mon, 08 Apr 2013 17:41:30 +0000</pubDate>
			<dc:creator>barrygcooper</dc:creator>
			<guid isPermaLink="false">1214347@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>How can I set the link colors (and hover link colours) in my CSS so that they are uniform throughout my site? </p>
<p>I'm using the Traction theme, and it seems that blog post title links are colored differently in the "Featured Articles" slider, compared to the non-featured blog posts.</p>
<p>I tried to do this using the "customise your blog" sidebar in the Dashboard, but couldn't find a way. Many thanks for any help you can offer.
</p>
]]></description>
					</item>
		<item>
			<title>teamoyeniyi on "Is it possible to move a menu item from one menu to another?"</title>
			<link>http://en.forums.wordpress.com/topic/is-it-possible-to-move-a-menu-item-from-one-menu-to-another#post-1145275</link>
			<pubDate>Wed, 06 Feb 2013 20:10:15 +0000</pubDate>
			<dc:creator>teamoyeniyi</dc:creator>
			<guid isPermaLink="false">1145275@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for the confirmation  - I didn't think it was possible and I agree - theme designers - give this some thought! :)
</p>
]]></description>
					</item>
		<item>
			<title>davidemeron on "Is it possible to move a menu item from one menu to another?"</title>
			<link>http://en.forums.wordpress.com/topic/is-it-possible-to-move-a-menu-item-from-one-menu-to-another#post-1144762</link>
			<pubDate>Wed, 06 Feb 2013 09:18:07 +0000</pubDate>
			<dc:creator>davidemeron</dc:creator>
			<guid isPermaLink="false">1144762@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I do not believe it is yet possible: however one might rename the menu which has the most entries in it and move those menus/submenus with  the least number to it.</p>
<p>On thing that would make this much easier is for all menu items to be automatically included in the "Links" function on the dashboard, and/or add a "links" widget to the menu creation page.  This way one could create whatever links and whatever categories one wants and then assign them to whatever menu one wants. </p>
<p>Sadly, this is not yet possible, and I have not yet found a way to access the created "links" directly.   </p>
<p>I have certainly wanted to so this myself; however thanks to this post causing me to think it through, I can at least take my own suggestion as I only have one short menu for my site (for negotiation) and another which is quite large which I have been displaying via a widget, but which I would like to include in a sub menu to my main menu.  I now realise that I can just copy the few links in my negotiation menu into my second menu (there are only four entries) and then point my theme to use this menu (as in the theme I use, only one menu is allowed.</p>
<p>Hope this helps!</p>
<p>But HEY WORDPRESS!!  INCLUDE THE LINKS LIST IN THE MENU CREATION PAGE!!!!   (or make the items movable...  or even both)
</p>
]]></description>
					</item>
		<item>
			<title>teamoyeniyi on "Is it possible to move a menu item from one menu to another?"</title>
			<link>http://en.forums.wordpress.com/topic/is-it-possible-to-move-a-menu-item-from-one-menu-to-another#post-1144011</link>
			<pubDate>Tue, 05 Feb 2013 10:50:32 +0000</pubDate>
			<dc:creator>teamoyeniyi</dc:creator>
			<guid isPermaLink="false">1144011@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I am using Traction and wish to move a menu item and the sub-menus to the other menu in one action rather than recreate it manually.<br />
Is this possible?
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Traction not updated so not supported?"</title>
			<link>http://en.forums.wordpress.com/topic/traction-not-updated-so-not-supported#post-1121034</link>
			<pubDate>Sat, 12 Jan 2013 01:52:49 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1121034@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>No I do not.
</p>
]]></description>
					</item>
		<item>
			<title>kimnoreen on "Traction not updated so not supported?"</title>
			<link>http://en.forums.wordpress.com/topic/traction-not-updated-so-not-supported#post-1121032</link>
			<pubDate>Sat, 12 Jan 2013 01:50:59 +0000</pubDate>
			<dc:creator>kimnoreen</dc:creator>
			<guid isPermaLink="false">1121032@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you so much - I am just learning all of this and actually hoping to find somebody that will do this for me ~ do you work for others?
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Traction not updated so not supported?"</title>
			<link>http://en.forums.wordpress.com/topic/traction-not-updated-so-not-supported#post-1120365</link>
			<pubDate>Fri, 11 Jan 2013 17:11:50 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1120365@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Have you posted to the premium themes forum? We Volunteers on these support forums don't have access to premium themes and can't help with them as we have never had hands-on experience with them. Read-access to the premium themes forum is now open to all users so you can search to see if your questions have been previously asked and answered there. The premium theme forums are at <a href="http://premium-themes.forums.wordpress.com/" rel="nofollow">http://premium-themes.forums.wordpress.com/</a> with separate sections for each theme. <a href="http://premium-themes.forums.wordpress.com/forum/traction/" rel="nofollow">http://premium-themes.forums.wordpress.com/forum/traction/</a></p>
<p>If you are not successful when searching there is a link for the specific Premium Theme support forum for your theme under Appearance -&#62; Themes in your blog’s Dashboard, but do note that the premium theme must be active and you must be signed in as the user who purchased it in order to see it and post to it.
</p>
]]></description>
					</item>
		<item>
			<title>kimnoreen on "Traction not updated so not supported?"</title>
			<link>http://en.forums.wordpress.com/topic/traction-not-updated-so-not-supported#post-1120358</link>
			<pubDate>Fri, 11 Jan 2013 17:09:45 +0000</pubDate>
			<dc:creator>kimnoreen</dc:creator>
			<guid isPermaLink="false">1120358@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I bought the site Traction but when I got there it says nothing has been done for 2 years and this might not be a good choice - won't be supported
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Background"</title>
			<link>http://en.forums.wordpress.com/topic/background-10#post-1088447</link>
			<pubDate>Thu, 06 Dec 2012 18:32:10 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1088447@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Replace the url() value with your own image, of course. I used a WordPress logo just as an example.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Background"</title>
			<link>http://en.forums.wordpress.com/topic/background-10#post-1088446</link>
			<pubDate>Thu, 06 Dec 2012 18:31:39 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1088446@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>In the Traction theme, you could do something like this:</p>
<pre><code>body {
	background: url(&#039;http://s.wordpress.org/about/images/logos/wordpress-logo-32-blue.png&#039;);
}</code></pre>
]]></description>
					</item>
		<item>
			<title>ourwweviews on "Background"</title>
			<link>http://en.forums.wordpress.com/topic/background-10#post-1066611</link>
			<pubDate>Sun, 11 Nov 2012 23:15:01 +0000</pubDate>
			<dc:creator>ourwweviews</dc:creator>
			<guid isPermaLink="false">1066611@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Nobody knows?
</p>
]]></description>
					</item>
		<item>
			<title>ourwweviews on "Background"</title>
			<link>http://en.forums.wordpress.com/topic/background-10#post-1057875</link>
			<pubDate>Thu, 01 Nov 2012 23:07:35 +0000</pubDate>
			<dc:creator>ourwweviews</dc:creator>
			<guid isPermaLink="false">1057875@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Anyone? </p>
<p>I should rephrase the question a little. How do I add a background using CSS?
</p>
]]></description>
					</item>
		<item>
			<title>ourwweviews on "Background"</title>
			<link>http://en.forums.wordpress.com/topic/background-10#post-1057119</link>
			<pubDate>Thu, 01 Nov 2012 15:00:42 +0000</pubDate>
			<dc:creator>ourwweviews</dc:creator>
			<guid isPermaLink="false">1057119@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hey, how do I add a background to CSS?
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Change menu bar colour - css code please"</title>
			<link>http://en.forums.wordpress.com/topic/change-menu-bar-colour-css-code-please#post-1023373</link>
			<pubDate>Thu, 27 Sep 2012 06:36:54 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1023373@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>First, check the <strong>Appearance &#8594; Theme Options &#8594; Color scheme</strong> setting to see if one of the built in color schemes will work for you. @ryadhkaddour, that's how they changed it to red.</p>
<p>Changing the color to something custom will take some work. Here is a CSS example you can start with: </p>
<pre><code>body.red #main-top,
body.red #main-bottom,
body.red div.feature-top,
body.red div.feature-bottom,
body.red div#cat-nav,
body.red div.feature-sidebar h2 {
	background-image: url(&quot;http://s0.wp.com/wp-content/themes/premium/traction/stylesheets/../images/colors/green/sprite-bg.png&quot;);
}
body.red .nav ul {
    background-image: url(http://s0.wp.com/wp-content/themes/premium/traction/images/colors/green/nav-bottom.png);
}
body.red .nav li li {
	background: #207b1d;
}
body.red .nav li li:hover,
body.red .nav li li.sfhover,
body.red .nav li li.current_page_parent,
body.red .nav li li.current_page_ancestor,
body.red .nav li li.current-cat-parent,
body.red .nav li li.current-cat,
body.red .nav li li.current_page_item {
	background: #1b6b19;
}
body.red div#feature {
	background-image: url(http://s0.wp.com/wp-content/themes/premium/traction/images/colors/green/feature-body.png);
}
body.red .nav a {
	color: #c04d4d;
}</code></pre>
<p>Copy each url() value, save the corresponding image, recreate a new image with the colors you want, upload the new image you created to your <a href="http://en.support.wordpress.com/media/media-add-new/">media library</a>, copy the link URL, replace the url() value for the image in the CSS example above with the link URL of your custom image.</p>
<p>Also note that the example above uses "body.red" and that means it depends on the theme using the red color scheme option. If you change the color scheme in the theme options, you will also need to update the "body.red" CSS rule to match.
</p>
]]></description>
					</item>
		<item>
			<title>ryadhkaddour on "Change menu bar colour - css code please"</title>
			<link>http://en.forums.wordpress.com/topic/change-menu-bar-colour-css-code-please#post-1010427</link>
			<pubDate>Fri, 14 Sep 2012 18:05:24 +0000</pubDate>
			<dc:creator>ryadhkaddour</dc:creator>
			<guid isPermaLink="false">1010427@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>hi,</p>
<p>how did you change the category and the pages bar?
</p>
]]></description>
					</item>
		<item>
			<title>brightersideofchill on "Change menu bar colour - css code please"</title>
			<link>http://en.forums.wordpress.com/topic/change-menu-bar-colour-css-code-please#post-1005610</link>
			<pubDate>Tue, 11 Sep 2012 06:41:06 +0000</pubDate>
			<dc:creator>brightersideofchill</dc:creator>
			<guid isPermaLink="false">1005610@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi</p>
<p>Can someone please share the css code for changing the standard "red" menu bar colour to something different please. I am using Premium "Traction" Theme.</p>
<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Changing page color"</title>
			<link>http://en.forums.wordpress.com/topic/changing-page-color-1#post-919260</link>
			<pubDate>Tue, 19 Jun 2012 23:21:36 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">919260@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You are welcome.
</p>
]]></description>
					</item>

	</channel>
</rss>
