<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Add Text Under Logo</title>
		<link>http://www.kriesi.at/support/topic/add-text-under-logo</link>
		<description>Support Forum - Topic: Add Text Under Logo</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 09:16:53 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/add-text-under-logo" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Add Text Under Logo"</title>
			<link>http://www.kriesi.at/support/topic/add-text-under-logo#post-100402</link>
			<pubDate>Sun, 10 Mar 2013 06:49:58 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">100402@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can change the line in Dude's response above from&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$logo .= &#38;#39;&#38;lt;p class=&#38;quot;logotext&#38;quot;&#38;gt;My custom text&#38;lt;/p&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$logo .= &#38;#39;&#38;lt;div class=&#38;quot;logotext_wrapper&#38;quot;&#38;gt;&#38;lt;p class=&#38;quot;logotext&#38;quot;&#38;gt;My custom text&#38;lt;/p&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This way you can position and style the text anyway you want.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KirinDesign on "Add Text Under Logo"</title>
			<link>http://www.kriesi.at/support/topic/add-text-under-logo#post-100269</link>
			<pubDate>Fri, 08 Mar 2013 19:56:20 +0000</pubDate>
			<dc:creator>KirinDesign</dc:creator>
			<guid isPermaLink="false">100269@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks - both work to get the text there, but both also present issues.  The former, when padding is added, pushes everything around it in all directions rather than moving it.  The latter (into the framework files) moves around the logo in a way that I can't get formatted well.  Any other ideas?  If not, I'll just stick with it as it is for now.&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add Text Under Logo"</title>
			<link>http://www.kriesi.at/support/topic/add-text-under-logo#post-98798</link>
			<pubDate>Thu, 28 Feb 2013 07:31:51 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">98798@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up framework/php/function-set-avia-frontend-functions.php and look for following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_logo&#38;#39;))
{
	/**
	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
	 * otherwise display the logo file linked in the css file for the .bg-logo class
	 * @return string the logo + url
	 */
	function avia_logo()
	{
		if($logo = avia_get_option(&#38;#39;logo&#38;#39;))
		{
			 $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$logo.&#38;quot; alt=&#38;#39;&#38;#39; /&#38;gt;&#38;quot;;
			 $logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}
		else
		{
			$logo = get_bloginfo(&#38;#39;name&#38;#39;);
			$logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
		}

		return $logo;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can add your text below following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$logo = &#38;quot;&#38;lt;h1 class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;quot;;
$logo .= &#38;#39;&#38;lt;p class=&#38;quot;logotext&#38;quot;&#38;gt;My custom text&#38;lt;/p&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and instead of &#34;My custom text&#34; insert your text.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Add Text Under Logo"</title>
			<link>http://www.kriesi.at/support/topic/add-text-under-logo#post-98797</link>
			<pubDate>Thu, 28 Feb 2013 07:27:54 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">98797@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi KirinDesign,&#60;/p&#62;
&#60;p&#62;Kindly open header.php and find this line of code:&#60;br /&#62;
&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;main_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;above it, add this:&#60;br /&#62;
&#60;code&#62;?&#38;gt;&#38;lt;div class=&#38;quot;slogan&#38;quot;&#38;gt;Text under the logo&#38;lt;/div&#38;gt;&#38;lt;?php&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Just replace the text, and add some styling in either Quick CSS or custom.css.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KirinDesign on "Add Text Under Logo"</title>
			<link>http://www.kriesi.at/support/topic/add-text-under-logo#post-98738</link>
			<pubDate>Wed, 27 Feb 2013 19:18:25 +0000</pubDate>
			<dc:creator>KirinDesign</dc:creator>
			<guid isPermaLink="false">98738@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi - I'm using Choices and would very much like to add text under my logo.  I couldn't find the right fit in the other threads...  site is kirindesigngr.com&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
