<?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>How to add an image next to logo in header &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/feed/</link>
		<description></description>
		<lastBuildDate>Tue, 14 Oct 2025 08:18:46 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/#post-66408</guid>
					<title><![CDATA[How to add an image next to logo in header]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/#post-66408</link>
					<pubDate>Tue, 08 Jul 2014 20:26:20 +0000</pubDate>
					<dc:creator>RB_WP</dc:creator>

					<description>
						<![CDATA[
						<p>Hi all, I&#8217;ve looked for a while and cannot figure out how to add a second image next to the logo.  I am not sure if I have to change the wp-header.php file or use the customizer.  Any help would be appreciated.  Thank you. I am using WordPress 3.9.1 and the Integrity stack.  The URL is beta.starfone.net</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/#post-66786</guid>
					<title><![CDATA[Reply To: How to add an image next to logo in header]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-add-an-image-next-to-logo-in-header/#post-66786</link>
					<pubDate>Wed, 09 Jul 2014 19:34:18 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Daniel,</p>
<p>Thank you for writing in!</p>
<p>Because this requires a template change, I&#8217;d advise that you setup a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. This allows you to make code changes that won&#8217;t be overwritten when an <strong>X</strong> update is released. After your child theme is setup, please review how we recommend making template changes in <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>You’ll want to copy this file to your child theme: <strong>x/framework/views/global/_brand.php</strong> </p>
<p>Then you can add the second image at the bottom. So the code will be something like:</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_BRAND.PHP
// -----------------------------------------------------------------------------
// Outputs the brand.
// =============================================================================

$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;;

?&gt;

&lt;?php echo ( is_front_page() ) ? &#039;&lt;h1 class=&quot;visually-hidden&quot;&gt;&#039; . $site_name . &#039;&lt;/h1&gt;&#039; : &#039;&#039;; ?&gt;

&lt;a href=&quot;&lt;?php echo home_url( &#039;/&#039; ); ?&gt;&quot; class=&quot;&lt;?php x_brand_class(); ?&gt;&quot; title=&quot;&lt;?php echo $site_description; ?&gt;&quot;&gt;
  &lt;?php echo ( $logo == &#039;&#039; ) ? $site_name : $site_logo; ?&gt;
&lt;/a&gt;

&lt;a href=&quot;URL_TO_WEBSITE&quot; class=&quot;logo-aside-image&quot;&gt;&lt;img src=&quot;IMAGE_URL&quot; alt=&quot;&quot;&gt;&lt;/a&gt;
</code></pre>
<p>Just change the &#8220;URL_TO_WEBSITE&#8221; with the one you want to point and &#8220;IMAGE_URL&#8221; to the URL of your uploaded image.</p>
<p>If you need to style it, you can simply use the &#8220;.logo-aside-image&#8221; CSS class in <strong>Customizer &gt; Custom &gt; CSS</strong>, like:</p>
<pre><code>.logo-aside-image {
   /* Styling goes here */
}
</code></pre>
<p>Hope this helps. If you face any issue, please let us know. We&#8217;ll be happy to assist. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

