<?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: Header Logo</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/header-logo/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/feed/</link>
		<description></description>
		<pubDate>Thu, 27 Aug 2026 18:33:04 +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/header-logo/#post-28965</guid>
					<title><![CDATA[Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-28965</link>
					<pubDate>Mon, 13 Jun 2016 11:44:19 +0000</pubDate>
					<dc:creator>esgoddard</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, is there a way to put your website header logo in as live text?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-28966</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-28966</link>
					<pubDate>Mon, 13 Jun 2016 12:29:16 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Yes, overwrite your header.php template and mod it to replace the logo img with some text in a heading for example, then obviously style it. <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/header-logo/#post-28967</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-28967</link>
					<pubDate>Mon, 13 Jun 2016 12:31:42 +0000</pubDate>
					<dc:creator>esgoddard</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks, where is the header.php file? Could you give me an example of some styled code which I can then amend? I&#8217;m not sure quite how to write the code. Thank you <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/header-logo/#post-28969</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-28969</link>
					<pubDate>Mon, 13 Jun 2016 12:40:44 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>The header.php is in the root of the theme: \wp-content\themes\Fortuna\header.php</p>
<p>Make sure you copy that in your Child theme&#8217;s root folder, then edit it.</p>
<p>You would start by replacing the logo image code in that new header.php:</p>
<pre><code>&lt;?php	if($logo) { ?&gt;
							&lt;div class=&#039;logo_img &lt;?php echo $logo_transparent ? &quot;transparent_logo_&quot;.esc_attr($transparent_logo_effect) : &quot;&quot;;?&gt;&#039;&gt;
								&lt;a href=&quot;&lt;?php echo esc_url(home_url(&#039;/&#039;)); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr(get_bloginfo(&#039;name&#039;, &#039;display&#039;)); ?&gt;&quot; rel=&quot;home&quot;&gt;
									&lt;img src=&quot;&lt;?php echo esc_url($logo); ?&gt;&quot; alt=&quot;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&quot;/&gt;
									&lt;?php if($logo_transparent) { ?&gt;
										&lt;span id=&quot;transparent_logo&quot;&gt;&lt;img src=&quot;&lt;?php echo esc_url($logo_transparent); ?&gt;&quot; alt=&quot;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&quot;/&gt;&lt;/span&gt;
									&lt;?php } ?&gt;
								&lt;/a&gt;
							&lt;/div&gt;
				&lt;?php	} else { ?&gt;
							&lt;div class=&#039;logo_img &lt;?php echo $logo_transparent ? &quot;transparent_logo_&quot;.esc_attr($transparent_logo_effect) : &quot;&quot;;?&gt;&#039;&gt;
								&lt;a href=&quot;&lt;?php echo esc_url(home_url(&#039;/&#039;)); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr(get_bloginfo(&#039;name&#039;, &#039;display&#039;)); ?&gt;&quot; rel=&quot;home&quot;&gt;
									&lt;img src=&quot;&lt;?php echo esc_url(get_template_directory_uri().&#039;/images/logo.png&#039;); ?&gt;&quot; alt=&quot;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&quot;/&gt;
									&lt;?php if($logo_transparent) { ?&gt;
										&lt;span id=&quot;transparent_logo&quot;&gt;&lt;img src=&quot;&lt;?php echo esc_url(get_template_directory_uri().&#039;/img/logo.png&#039;); ?&gt;&quot; alt=&quot;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&quot;/&gt;&lt;/span&gt;
									&lt;?php } ?&gt;
								&lt;/a&gt;
							&lt;/div&gt;
				&lt;?php	} ?&gt;</code></pre>
<p>and replace it with your TEXT logo, for example:</p>
<p><code>&lt;h2&gt; My Logo &lt;/h2&gt;</code></p>
<p>Then you would style your logo with simple CSS like so:</p>
<pre><code>#logo h2 {
font-size: 36px;
color: red;
}</code></pre>
<p>etc.</p>
<p>Let me know if I can further help you with the CSS once you have the text on there!<br />
URL will be helpful too! <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/header-logo/#post-29009</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29009</link>
					<pubDate>Tue, 14 Jun 2016 13:00:44 +0000</pubDate>
					<dc:creator>esgoddard</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks, I&#8217;m not using a child theme though, can I still do it?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29019</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29019</link>
					<pubDate>Wed, 15 Jun 2016 07:21:00 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You can, but on a theme update you will lose the changes&#8230;<br />
Using a child theme is actually rather easy, takes a minute. <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29021</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29021</link>
					<pubDate>Wed, 15 Jun 2016 07:25:03 +0000</pubDate>
					<dc:creator>esgoddard</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks. I am already half way through my website though &#8211; can you switch to a child theme half way through without affecting anything?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29023</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29023</link>
					<pubDate>Wed, 15 Jun 2016 07:32:18 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Well, as long as you move your CSS customizations from the main style.css file to your Child theme one you are good to go. The theme options you can export and reimport into the child theme (as they will be default in a new theme). <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29037</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29037</link>
					<pubDate>Wed, 15 Jun 2016 15:25:09 +0000</pubDate>
					<dc:creator>esgoddard</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks. How do you export and reimport the theme options?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29051</guid>
					<title><![CDATA[Reply To: Header Logo]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/header-logo/#post-29051</link>
					<pubDate>Thu, 16 Jun 2016 08:19:49 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p><a href="http://blueowlcreative.com/docs/fortuna/#installation4" rel="nofollow">http://blueowlcreative.com/docs/fortuna/#installation4</a></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

