<?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: Transparency Header on mobile, change Mobile Header background</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/feed/</link>
		<description></description>
		<pubDate>Fri, 28 Aug 2026 00:44:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23430</guid>
					<title><![CDATA[Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23430</link>
					<pubDate>Wed, 14 Oct 2015 12:15:46 +0000</pubDate>
					<dc:creator>hnsm</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>I use an White Logo in the Header and the logo is not shown on mobile view, because the header background color is white.</p>
<p>How can I use a transparency header on mobile or another color for the mobile view?</p>
<p>Thank you<br />
hnsm.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23433</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23433</link>
					<pubDate>Wed, 14 Oct 2015 12:42:49 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>In that case you may set your mobile header background color explicitly in Theme Options -> Custom CSS or in your Child theme CSS file like so:</p>
<pre><code>@media only screen and (max-width: 768px){
  #header {
    background: #666;
  }
  .m_nav_ham {
    background: #fff;
  }
}</code></pre>
<p>Notice I also set the MENU NAVIGATOR to white color in there. <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23468</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-23468</link>
					<pubDate>Wed, 14 Oct 2015 20:31:52 +0000</pubDate>
					<dc:creator>hnsm</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28424</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28424</link>
					<pubDate>Tue, 10 May 2016 15:38:49 +0000</pubDate>
					<dc:creator>arcitupnh</dc:creator>

					<description>
						<![CDATA[
						<p>I put the code above into my Global CSS and the m_nav_ham worked but not the header background color; it is still appearing as white. <a href="http://www.arcnh.org/valeriemanha/" rel="nofollow">http://www.arcnh.org/valeriemanha/</a></p>
<pre><code>#header {
    background: #1A1A1A;
}

@media only screen and (max-width: 768px) {
  #header {
    background: #1A1A1A;
  }
  .m_nav_ham {
    background: #fff;
  }
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28425</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28425</link>
					<pubDate>Tue, 10 May 2016 15:55:42 +0000</pubDate>
					<dc:creator>arcitupnh</dc:creator>

					<description>
						<![CDATA[
						<p>The background is not working for ipad size either. How can I make all header sizes one background with white text / navigation?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28434</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28434</link>
					<pubDate>Wed, 11 May 2016 07:39:55 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Simply add the !important clause to your CSS:</p>
<pre><code>@media only screen and (max-width: 768px){
#header {
    background: #1A1A1A!important;
}
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28450</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28450</link>
					<pubDate>Wed, 11 May 2016 13:35:15 +0000</pubDate>
					<dc:creator>arcitupnh</dc:creator>

					<description>
						<![CDATA[
						<p>There is still a spot, between the desktop size and the mobile size, in which the header turns white again. If I take a browser size and slowly change the width size, it will turn white for a time and then turn dark again when it hits the mobile size.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28470</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28470</link>
					<pubDate>Thu, 12 May 2016 08:02:00 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Do this instead then:</p>
<pre><code>@media only screen and (max-width: 1017px){
#header {
    background: #1A1A1A!important;
}
}</code></pre>
<p>You may want to force the mobile menu to be white as well:</p>
<pre><code>@media only screen and (max-width: 1017px){
.m_nav_ham {
    background: #fff;
}
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28472</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28472</link>
					<pubDate>Thu, 12 May 2016 13:16:08 +0000</pubDate>
					<dc:creator>arcitupnh</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28480</guid>
					<title><![CDATA[Reply To: Transparency Header on mobile, change Mobile Header background]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/transparency-header-on-mobile/#post-28480</link>
					<pubDate>Fri, 13 May 2016 08:16:49 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hey, thanks for the feedback, my friend! Glad to hear you like the theme and its features, make sure you rate it at TF if you want to support us back! <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

