<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Cannot change Footer Background and text color</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/feed/</link>
		<description></description>
		<pubDate>Sun, 19 Jul 2026 01:23:53 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26576</guid>
					<title><![CDATA[Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26576</link>
					<pubDate>Mon, 25 Jan 2016 08:33:28 +0000</pubDate>
					<dc:creator>baucoop</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there</p>
<p>We bought your theme to create a new business homepage.<br />
So far only minor problems came up which i could fix on my own.</p>
<p>Now I am trying to change the background and the text color of the footer.<br />
I already found replies to the same questions here, but your provided CSS code does not work.<br />
It is just ignored.<br />
I tried it in Theme Options -&gt; Custom CSS<br />
and in Simple Custom CSS plugin (the one I am using to change the active page color in the header).</p>
<p>The code i tried is this one:</p>
<p>#footer {<br />
    background: #461000;<br />
}<br />
.footer_btm {<br />
    background: #003131;<br />
}</p>
<p>and</p>
<p>#footer {<br />
    color: #fff;<br />
}</p>
<p>Both codeline are not working&#8230;</p>
<p>URL is:</p>
<p><a href="http://web50.server57.webgo24.de/bau-cooperation.com" rel="nofollow">http://web50.server57.webgo24.de/bau-cooperation.com</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26592</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26592</link>
					<pubDate>Mon, 25 Jan 2016 09:46:51 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I can see you most likely overrode your footer.php now, the CSS code above should really work, unless something else is happening, I would like to take a look for you, could you pls plug the default footer.php + your custom CSS?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26595</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26595</link>
					<pubDate>Mon, 25 Jan 2016 10:01:41 +0000</pubDate>
					<dc:creator>baucoop</dc:creator>

					<description>
						<![CDATA[
						<p>My footer.php</p>
<p>	&lt;/div&gt;<br />
	&lt;!&#8211; Page content::END &#8211;&gt;<br />
&lt;?php </p>
<p>	// Check if Header is disabled<br />
	$footer_is_off = false;<br />
	if(isset($post-&gt;ID)){<br />
		// Check Page Settings also<br />
		$footer_is_off = get_post_meta($post-&gt;ID, &#8216;boc_footer_is_off&#8217;, true)==&#8217;on&#8217; ? true : false;<br />
	}	</p>
<p>	if(!$footer_is_off) {</p>
<p>		// Get footer Options<br />
		$footer_style = (bool)ot_get_option(&#8216;footer_style&#8217;);<br />
		$footer_columns = (int)ot_get_option(&#8216;footer_columns&#8217;, 4);<br />
	?&gt;</p>
<p>		&lt;!&#8211; Footer::Start &#8211;&gt;<br />
		&lt;div id=&#8221;footer&#8221; class=&#8221;&lt;?php echo (!$footer_style ? &#8216;footer_light&#8217; : &#8221;);?&gt;&#8221; &lt;?php echo (!$footer_columns ? &#8220;style=&#8217;padding-top:0;  border-top: 0;&#8217;&#8221; : &#8220;&#8221;);?&gt;&gt;</p>
<p>		&lt;?php<br />
			// Handle Column count<br />
			if($footer_columns) { ?&gt;</p>
<p>				&lt;div class=&#8221;container&#8221;&gt;<br />
					&lt;div class=&#8221;section&#8221;&gt;</p>
<p>					&lt;?php<br />
					// Loop Columns<br />
					for($i = 1; $i &lt;= $footer_columns; $i++){ ?&gt;</p>
<p>						&lt;div class=&#8221;col span_1_of_&lt;?php echo $footer_columns;?&gt;&#8221;&gt;<br />
						&lt;?php if ( ! dynamic_sidebar(&#8216;Footer Widget &#8216;.$i) ) : ?&gt;<br />
							&lt;h3 class=&#8221;widgettitle&#8221;&gt;Footer Widget Area &lt;?php echo $i;?&gt;&lt;/h3&gt;<br />
							&lt;p&gt;<a>&#8220;&gt;Assign a widget to this area now.</a>&lt;/p&gt;<br />
						&lt;?php endif; // end widget area ?&gt;<br />
						&lt;/div&gt;</p>
<p>					&lt;?php } ?&gt;</p>
<p>					&lt;/div&gt;<br />
				&lt;/div&gt;</p>
<p>			&lt;?php } ?&gt;</p>
<p>			&lt;div class=&#8221;footer_btm&#8221; &lt;?php echo (($footer_columns==0) ? &#8221; style=&#8217;margin-top: 0;&#8217;&#8221; : &#8220;&#8221;);?&gt;&gt;<br />
				&lt;div class=&#8221;container&#8221;&gt;<br />
					&lt;div class=&#8221;footer_btm_inner&#8221;&gt;</p>
<p>					&lt;?php 	if(is_array($footer_icons = ot_get_option(&#8216;footer_icons&#8217;))){<br />
								$footer_icons = array_reverse($footer_icons);<br />
								foreach($footer_icons as $footer_icon){<br />
									echo &#8220;<a target='_blank' rel="nofollow"><br />
											&lt;span class=&#8217;icon &#8220;. $footer_icon['icons_service_footer'] .&#8221;&#8216; title=&#8217;&#8221;. esc_attr($footer_icon['title']) .&#8221;&#8216;&gt;&lt;/span&gt;<br />
										  </a>&#8220;;<br />
								}<br />
							}<br />
					?&gt;</p>
<p>						&lt;div id=&#8221;powered&#8221;&gt;&lt;?php echo ot_get_option(&#8216;copyrights&#8217;);?&gt;&lt;/div&gt;<br />
					&lt;/div&gt;<br />
				&lt;/div&gt;<br />
			&lt;/div&gt;<br />
	  &lt;/div&gt;<br />
	  &lt;!&#8211; Footer::END &#8211;&gt;<br />
&lt;?php } ?&gt;  </p>
<p>  &lt;/div&gt;<br />
  &lt;!&#8211; Page wrapper::END &#8211;&gt;</p>
<p>  &lt;?php wp_footer(); ?&gt;</p>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>My Custom CSS</p>
<p>@media only screen and (min-width: 1018px){<br />
  #menu li.current-page-parent  a,<br />
  #menu li.current-page-ancestor a,<br />
  #menu li.current_page_item  a {<br />
  color: #001cf4!important;<br />
  }<br />
}</p>
<p>Now when I add your css code to change footer color and footer background nothing happens.<br />
It is just ignored.</p>
<p>Thanks alot for your help</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26601</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26601</link>
					<pubDate>Mon, 25 Jan 2016 10:46:40 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Oh, cuz you are using the light footer&#8230; then do this:</p>
<pre><code>.footer_btm {
    background: #003131!important;
    border-top: transparent!important;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26611</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26611</link>
					<pubDate>Mon, 25 Jan 2016 12:23:17 +0000</pubDate>
					<dc:creator>baucoop</dc:creator>

					<description>
						<![CDATA[
						<p>Ok thank you this work.<br />
But now I got still a problem changing the text color and the textsize</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26612</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26612</link>
					<pubDate>Mon, 25 Jan 2016 12:33:04 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>#powered {<br />
    color: #fff;<br />
}<br />
#footer a {<br />
    color: green;<br />
}</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26613</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26613</link>
					<pubDate>Mon, 25 Jan 2016 13:03:19 +0000</pubDate>
					<dc:creator>baucoop</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you soo much for your excellent support.<br />
I definitely will recommend your theme to other people<br />
when they are asking for a strong business theme.</p>
<p>Have a nice day</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26616</guid>
					<title><![CDATA[Reply To: Cannot change Footer Background and text color]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/cannot-change-footer-background-and-text-color/#post-26616</link>
					<pubDate>Mon, 25 Jan 2016 13:19:55 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Cheers!<br />
If you are happy with the theme and our support take a minute to rate our theme under your downloads section in TF, it takes a second! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

