<?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 to change footer color and other stuff in Abundance</title>
		<link>http://www.kriesi.at/support/topic/how-to-change-footer-color-and-other-stuff-in-abundance</link>
		<description>Support Forum - Topic: How to change footer color and other stuff in Abundance</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 14:11:17 +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-to-change-footer-color-and-other-stuff-in-abundance" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "How to change footer color and other stuff in Abundance"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-footer-color-and-other-stuff-in-abundance#post-32793</link>
			<pubDate>Wed, 23 Nov 2011 01:31:15 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">32793@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that Dude could help :)!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>danielsami on "How to change footer color and other stuff in Abundance"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-footer-color-and-other-stuff-in-abundance#post-32696</link>
			<pubDate>Tue, 22 Nov 2011 03:11:49 +0000</pubDate>
			<dc:creator>danielsami</dc:creator>
			<guid isPermaLink="false">32696@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Dude, you went even beyond my questions, that's quality support!&#60;/p&#62;
&#60;p&#62;I already implemented the changes, everything work well.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to change footer color and other stuff in Abundance"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-footer-color-and-other-stuff-in-abundance#post-32280</link>
			<pubDate>Fri, 18 Nov 2011 10:21:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">32280@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) You can change the footer color with following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top #footer, #top #footer span, #top #footer div, #top #footer p, #top #footer a {
    background-color: #2C3547 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can change the color value of course :)&#60;/p&#62;
&#60;p&#62;2) Correct :)&#60;/p&#62;
&#60;p&#62;3) I'd use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#socket {
    background-color: #1B2436 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can use the opacity code like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#socket {
    background-color: #1B2436 !important;
   -moz-opacity:0.5; //set a value between 0 and 1
    opacity: 0.5;  //set a value between 0 and 1
    -ms-filter:&#38;quot;progid:DXImageTransform.Microsoft.Alpha(Opacity=50)&#38;quot;; //set a value between 0 and 100
     filter: alpha(opacity=50);	 //set a value between 0 and 100
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>danielsami on "How to change footer color and other stuff in Abundance"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-footer-color-and-other-stuff-in-abundance#post-32230</link>
			<pubDate>Fri, 18 Nov 2011 03:46:24 +0000</pubDate>
			<dc:creator>danielsami</dc:creator>
			<guid isPermaLink="false">32230@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62; First, let me say I am so pleased to be working on a website with Abundance, the most powerful theme by Kriesi so far, full of options to customize it. I'm using it to build a church website, without the ecommerce plugin, and it works great.&#60;/p&#62;
&#60;p&#62;My client asked me to customize some features and I would like some advise and/or confirmation when messing with the css.&#60;/p&#62;
&#60;p&#62;1- How can I change the footer color to make it different from the header color? The theme options allow one color change that applies to both the header and the footer.&#60;/p&#62;
&#60;p&#62;2-I noticed that the &#34;drop caps&#34; background color also changes when I change the header/footer color. Can I set the drop caps color separately? I tried in custom.css the following:&#60;/p&#62;
&#60;p&#62;.dropcap2 {&#60;br /&#62;
	background-color:#c00;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;So far it worked, please confirm if what I did it's correct.&#60;/p&#62;
&#60;p&#62;3- How can I manage the color of the copyright section at the bottom of the footer? It has a different color that changes when changing the footer/header color, probably a different opacity setting?&#60;/p&#62;
&#60;p&#62;I've tried the following using custom.css, please confirm it's correct:&#60;/p&#62;
&#60;p&#62;#socket.container_wrap {&#60;br /&#62;
	background:#c00;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Finally, I need to change the background and hover color of the MegaMenu. Also, the width of the frame around the submenus.&#60;/p&#62;
&#60;p&#62;I'm working in the translation into Spanish of the .po file, will post it for download as soon as I have it ready so anyone can benefit of it.&#60;/p&#62;
&#60;p&#62;Thanks in advance for any help,&#60;/p&#62;
&#60;p&#62;Daniel
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
