<?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>Two Logos in Header &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/two-logos-in-header-2/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 16:44:58 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135108</guid>
					<title><![CDATA[Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135108</link>
					<pubDate>Thu, 30 Oct 2014 12:57:59 +0000</pubDate>
					<dc:creator>junker367</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! I&#8217;ve searched for this in the forum but I not found anything.</p>
<p>I &#8216;ve got this web: <a href="http://nueva.residenciadonperro.com/wordpress" rel="nofollow">http://nueva.residenciadonperro.com/wordpress</a>. It&#8217;s important for my client to put 2 logos in the left side header menu section.</p>
<p>I&#8217;ve got the following structure:<br />
DogLog (href=indexphp)  &#8212;  CatLog (Href=section to the web) &#8212; THE ACTUAL MENU</p>
<p>Is there any way to make this?</p>
<p>Thanks in advanced</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135237</guid>
					<title><![CDATA[Reply To: Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135237</link>
					<pubDate>Thu, 30 Oct 2014 15:05:16 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for writing in,</p>
<p>First of all, please update your X theme and X shortcode, you can follow the update guide from here -&gt;  <a href="http://theme.co/x/member/kb/updating-your-theme-and-plugins/" rel="nofollow">http://theme.co/x/member/kb/updating-your-theme-and-plugins/</a></p>
<p>and sorry, but I&#8217;m not really sure if I understand you correctly,</p>
<p>Did you mean to have a different logo in the home page? </p>
<p>If so, then you need to set-up a child theme, you can simply download the child theme from here -&gt; <a href="http://theme.co/x/member/child-themes/" rel="nofollow">http://theme.co/x/member/child-themes/</a> then install and activate the one that corresponds to your stack</p>
<p>Then copy this file <strong>x/framework/views/global/_brand.php</strong> to your child theme<br />
e.g. <strong>x-child-integrity-light/framework/views/global/_brand.php</strong></p>
<p>Then edit the _brand.php that you copied on your child, theme,</p>
<p>you can see a code like this,</p>
<pre><code>$site_name        = get_bloginfo( &#039;name&#039; );
$site_description = get_bloginfo( &#039;description&#039; );
$logo             = x_make_protocol_relative( x_get_option( &#039;x_logo&#039; ) );
$site_logo        = &#039;&lt;img src=&quot;&#039; . $logo . &#039;&quot; alt=&quot;&#039; . $site_description . &#039;&quot;&gt;&#039;;</code></pre>
<p>Then simply add another $logo variable with the image url and add a php statement, e.g.</p>
<p>something like this,</p>
<pre><code>$site_name        = get_bloginfo( &#039;name&#039; );
$site_description = get_bloginfo( &#039;description&#039; );
$logo             = x_make_protocol_relative( x_get_option( &#039;x_logo&#039; ) );
if( is_front_page() ) {
	$logo             = &#039;http://your-image-url-here.com/image.jpg&#039;;
}
$site_logo        = &#039;&lt;img src=&quot;&#039; . $logo . &#039;&quot; alt=&quot;&#039; . $site_description . &#039;&quot;&gt;&#039;;</code></pre>
<p>Hope that helps,</p>
<p>Have a great day</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135726</guid>
					<title><![CDATA[Reply To: Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135726</link>
					<pubDate>Fri, 31 Oct 2014 09:42:21 +0000</pubDate>
					<dc:creator>junker367</dc:creator>

					<description>
						<![CDATA[
						<p>OK! The answer solves my problem. I dont want 2 different logos deppens the page. I want two logos always, in any page.</p>
<p>The solution is very simple. I only just add another &lt;a href=&#8221;&#8221;&#8230;.. in mi brand.php and it works.</p>
<p>I didn&#8217;t know what file manage the logo. _brand.php is the key 🙂</p>
<p>Thanks so much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135816</guid>
					<title><![CDATA[Reply To: Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-135816</link>
					<pubDate>Fri, 31 Oct 2014 12:33:47 +0000</pubDate>
					<dc:creator>Cousett</dc:creator>

					<description>
						<![CDATA[
						<p>Glad you were able to figure this out and thank you for posting the solution for others who may encounter the same issue. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-801791</guid>
					<title><![CDATA[Reply To: Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-801791</link>
					<pubDate>Thu, 18 Feb 2016 15:27:09 +0000</pubDate>
					<dc:creator>junker367</dc:creator>

					<description>
						<![CDATA[
						<p>One and half year later, I re-up this topic cause now I&#8217;ve got a new problem.</p>
<p>When reinstall all my files, and update mi &#8220;X-Theme&#8221;, this change is not perfect for me.</p>
<p>If I add in the global/brand.php the change of the add a new logo, everything is ok. But If I add this lines ONLY in the child theme brand.php, the change is not working.</p>
<p>This is a problem cause when I update the X Theme, I should made a backup of the global/brand.php and then restore it, instead only update, because the change only works in the global brand.php and not in the child brand.php.</p>
<p>How can I solve this?</p>
<p>Best regards</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-802493</guid>
					<title><![CDATA[Reply To: Two Logos in Header]]></title>
					<link>https://theme.co/archive/forums/topic/two-logos-in-header-2/#post-802493</link>
					<pubDate>Fri, 19 Feb 2016 01:18:45 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>It should work even if you add to your child theme.  Just make sure that your child theme is active, and not the main theme.</p>
<p>Would you mind provided the update URL? The above URL is inaccessible.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

