<?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: Decouple Background Color from Text Color</title>
		<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color</link>
		<description>Support Forum - Topic: Decouple Background Color from Text Color</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 17:33:31 +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/decouple-background-color-from-text-color" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5593</link>
			<pubDate>Tue, 28 Sep 2010 06:00:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5593@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can change the color by editing following to css attributes in style1/2/3.css - add a color attribute there:&#60;/p&#62;
&#60;p&#62;i.e:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#wrapper_featured_area, #wrapper_footer_top{
background: transparent url(&#38;quot;../images/skin1/bg_grain.png&#38;quot;) repeat-x bottom center;
color:#000;
}&#60;/code&#62;&#60;/pre&#62;
&#60;pre&#62;&#60;code&#62;#wrapper_head{
background: #fff url(&#38;quot;../images/skin1/bg_gradiant_stripe_top.png&#38;quot;) repeat-x 0 0;
border-bottom: 1px solid #fff;
color: #000;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>JennieSu on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5550</link>
			<pubDate>Mon, 27 Sep 2010 07:17:26 +0000</pubDate>
			<dc:creator>JennieSu</dc:creator>
			<guid isPermaLink="false">5550@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yeah, avisio!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5548</link>
			<pubDate>Mon, 27 Sep 2010 06:58:24 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5548@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It depends on the theme you're using. Some things are coupled, some things can be done via css. What theme are you refering to? Avisio?&#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JennieSu on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5531</link>
			<pubDate>Mon, 27 Sep 2010 05:58:55 +0000</pubDate>
			<dc:creator>JennieSu</dc:creator>
			<guid isPermaLink="false">5531@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ooh sweet! I needed this fix too! :)&#60;br /&#62;
If I want do decouple also the footer-area and headline-area, what should i do then? I just want the text to be in another color.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxartist on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5521</link>
			<pubDate>Sun, 26 Sep 2010 20:43:06 +0000</pubDate>
			<dc:creator>vfxartist</dc:creator>
			<guid isPermaLink="false">5521@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Works like a charm.&#60;br /&#62;
Thanks :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5466</link>
			<pubDate>Sat, 25 Sep 2010 16:01:35 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5466@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The easiest way would be to change following code in header.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;body id=&#38;#39;top&#38;#39; &#38;lt;?php body_class($k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;]);?&#38;gt; &#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;body id=&#38;#39;top&#38;#39; &#38;lt;?php body_class($k_option[&#38;#39;custom&#38;#39;][&#38;#39;bodyclass&#38;#39;]);?&#38;gt; style=&#38;#39;background-color:#C0C0C0;&#38;#39; &#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace C0C0C0 with a color of your choice (background color) and choose the font color in the admin backend.&#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxartist on "Decouple Background Color from Text Color"</title>
			<link>http://www.kriesi.at/support/topic/decouple-background-color-from-text-color#post-5444</link>
			<pubDate>Fri, 24 Sep 2010 15:05:32 +0000</pubDate>
			<dc:creator>vfxartist</dc:creator>
			<guid isPermaLink="false">5444@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I've been digging around, but i haven't been able to find out how to choose a different color for the background and the font.&#60;br /&#62;
Is there away to decouple this?&#60;br /&#62;
Regards&#60;br /&#62;
Jez
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
