<?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>Adding Text Below Logo &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/adding-text-below-logo/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/adding-text-below-logo/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 18 Oct 2025 14:20:19 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-282507</guid>
					<title><![CDATA[Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-282507</link>
					<pubDate>Tue, 26 May 2015 23:33:23 +0000</pubDate>
					<dc:creator>DonWattz</dc:creator>

					<description>
						<![CDATA[
						<p>How do I add text right below the logo and if I needed to style it, what would I do? I looked at other threads but none do what i need to do.</p>
<p><a href="http://178.01d.myftpupload.com" target="_blank" rel="nofollow">http://178.01d.myftpupload.com</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-282565</guid>
					<title><![CDATA[Reply To: Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-282565</link>
					<pubDate>Wed, 27 May 2015 02:18:17 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thank you for writing in!</p>
<p>It&#8217;s possible to add text below logo. So as 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>After that please duplicate <strong>x/framework/views/global/_brand.php</strong> to your child theme&#8217;s respective folder <strong>x-child/framework/views/global/</strong> and in the duplicated file, replace all of the code with the following:</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;div class=&quot;tagline&quot;&gt;TAGLINE&lt;/div&gt;
</code></pre>
<p>Replace the word TAGLINE with your own text.</p>
<p>After that you might want to style it. So for that purpose you can simply use the following CSS code in <strong>Customizer &gt; Custom &gt; CSS</strong> to make your desired CSS changes:</p>
<pre><code>/* to target SITE TITLE styling */
.x-brand span {
   display: block;
}

/* to target TAGLINE styling */
.x-navbar .tagline {
   display: block;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-841722</guid>
					<title><![CDATA[Reply To: Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-841722</link>
					<pubDate>Thu, 17 Mar 2016 13:44:08 +0000</pubDate>
					<dc:creator>STEVE H</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I have added the brand.php file to the child theme and added that CSS to the customizer.  Everything is working perfectly, except that I cannot change the color of the tagline.</p>
<p>Website: <a href="http://66.147.244.67/~travely9/savethepostoffice-X/" rel="nofollow">http://66.147.244.67/~travely9/savethepostoffice-X/</a><br />
X Theme: 4.3.4 (Renew)<br />
Wordpress 4.4.2</p>
<p>Thanks for your help.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-841930</guid>
					<title><![CDATA[Reply To: Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-841930</link>
					<pubDate>Thu, 17 Mar 2016 18:15:57 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there, </p>
<p>You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
.tagline {
    color: #fff;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-842033</guid>
					<title><![CDATA[Reply To: Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-842033</link>
					<pubDate>Thu, 17 Mar 2016 20:24:59 +0000</pubDate>
					<dc:creator>STEVE H</dc:creator>

					<description>
						<![CDATA[
						<p>Yep, that did the trick.  Thanks very much.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-842398</guid>
					<title><![CDATA[Reply To: Adding Text Below Logo]]></title>
					<link>https://theme.co/archive/forums/topic/adding-text-below-logo/#post-842398</link>
					<pubDate>Fri, 18 Mar 2016 01:11:52 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>We&#8217;re delighted to assist you with this.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

