<?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: Custom Blog Header</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 13:13:24 +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/custom-blog-header/#post-20383</guid>
					<title><![CDATA[Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20383</link>
					<pubDate>Sat, 14 Jun 2014 18:40:14 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>I wanted to know if there is a way, with CSS to change the header of only my blog page? </p>
<p>Thanks in advance,</p>
<p>Jenell</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20393</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20393</link>
					<pubDate>Mon, 16 Jun 2014 08:15:49 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Yes, what do you mean by change? Change the font, the background, the text? <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20411</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20411</link>
					<pubDate>Tue, 17 Jun 2014 13:16:28 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there!</p>
<p>I would like to replace the logo with a custom blog header, but only have it change on the &#8220;blog&#8221; page?<br />
 <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_biggrin.gif" alt=":-D" class="wp-smiley" />  </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20420</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20420</link>
					<pubDate>Tue, 17 Jun 2014 14:59:01 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You could add a check to your header.php for the blog page right around the lines where you output the logo or whatever element you want to replace, then if on the blog page output whatever you want, otherwise &#8211; display the current content. It would look like this:</p>
<pre><code>&lt;?php if ( is_home() ) { ?&gt;
	YOU ARE ON BLOG PAGE
&lt;?php }else{ ?&gt;
        You are on a different page
&lt;?php } ?&gt;</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20512</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20512</link>
					<pubDate>Sat, 21 Jun 2014 20:45:48 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p>It shows up beautifully, but the original logo is still showing on that page?</p>
<p>Any suggestions?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20513</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20513</link>
					<pubDate>Sat, 21 Jun 2014 20:46:15 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p><a href="http://sharp-timeless.com/blog/" rel="nofollow">http://sharp-timeless.com/blog/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20517</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20517</link>
					<pubDate>Mon, 23 Jun 2014 07:58:32 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Ahaa, yes, in the &#8220;else&#8221; section of that IF statement you need to output your regular logo, that way IF the page is the blog page it will show your big logo, ELSE &#8211; your regular one! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20518</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20518</link>
					<pubDate>Mon, 23 Jun 2014 17:37:58 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p>Makes sense! *high kick*</p>
<p>However *womp womp*<br />
It seems to appear twice. Ugh I hate to be a nuisance. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20519</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20519</link>
					<pubDate>Mon, 23 Jun 2014 18:13:09 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Let me see the code! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20520</guid>
					<title><![CDATA[Reply To: Custom Blog Header]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-blog-header/#post-20520</link>
					<pubDate>Mon, 23 Jun 2014 18:15:46 +0000</pubDate>
					<dc:creator>jengily</dc:creator>

					<description>
						<![CDATA[
						<p>dum dum dum*</p>
<p>Code below. I removed the second image because it had the main logo repeating. </p>
<pre><code>
&lt;?php if ( is_home() ) { ?&gt;
	&lt;img src=&quot;http://sharp-timeless.com/wp-content/uploads/2014/06/sharpandtimeless_moveinstyle1.jpg&quot; /&gt;
&lt;?php }else{ ?&gt;
&lt;?php } ?&gt;
</code></pre>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

