<?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: Display Site Title and Tagline</title>
		<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying</link>
		<description>Support Forum - Topic: Display Site Title and Tagline</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 17:10:20 +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/site-title-and-tagline-not-modifying" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-112042</link>
			<pubDate>Fri, 17 May 2013 19:48:05 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">112042@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Alright. Good luck and enjoy the theme.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ronan3522 on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-111972</link>
			<pubDate>Fri, 17 May 2013 16:44:29 +0000</pubDate>
			<dc:creator>ronan3522</dc:creator>
			<guid isPermaLink="false">111972@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, i will try this !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-111731</link>
			<pubDate>Thu, 16 May 2013 19:49:05 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">111731@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Sorry about that. I tested a new approach that is working.&#60;/p&#62;
&#60;p&#62;Please open up header.php and find lines 98-110 that look like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;######################################################################
if (isset($k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;]) &#38;amp;&#38;amp; $k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;] != &#38;#39;&#38;#39;)
{
	$logo = &#38;#39;&#38;lt;img class=&#38;quot;ie6fix&#38;quot; src=&#38;quot;&#38;#39;.$k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;] .&#38;#39;&#38;quot; alt=&#38;quot;&#38;#39;.get_settings(&#38;#39;home&#38;#39;).&#38;#39;&#38;quot; /&#38;gt;&#38;#39;;
	$logoclass = &#38;#39;logoimg&#38;#39;;
}
else // default logo
{
	$logo = get_bloginfo(&#38;#39;name&#38;#39;);
	$logoclass = &#38;#39;logobg2&#38;#39;;
}

######################################################################&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and in their place paste the code below.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;######################################################################
//if (isset($k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;]) &#38;amp;&#38;amp; $k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;] != &#38;#39;&#38;#39;)
//{
//	$logo = &#38;#39;&#38;lt;img class=&#38;quot;ie6fix&#38;quot; src=&#38;quot;&#38;#39;.$k_option[&#38;#39;general&#38;#39;][&#38;#39;logo&#38;#39;] .&#38;#39;&#38;quot; alt=&#38;quot;&#38;#39;.get_settings(&#38;#39;home&#38;#39;).&#38;#39;&#38;quot; /&#38;gt;&#38;#39;;
//	$logoclass = &#38;#39;logoimg&#38;#39;;
//}
//else // default logo
//{
//	$logo = get_bloginfo(&#38;#39;name&#38;#39;);
//	$logoclass = &#38;#39;logobg2&#38;#39;;
//}

######################################################################&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Since you know the name of the site, it would be easier to hardcode it and save that extra couple of database connections every time any page in the website loads. now in the same file (header.php) find line 125 that looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h2 class=&#38;quot;logo &#38;lt;?php echo $logoclass; ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;a class=&#38;#39;ie6fix&#38;#39; href=&#38;quot;&#38;lt;?php echo get_settings(&#38;#39;home&#38;#39;); ?&#38;gt;/&#38;quot;&#38;gt;&#38;lt;?php echo $logo; ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace it with the line below (just change $$$$$$$$ to whatever you want to show up as the title (no quotes needed.) Leave the html as is , unless you want the problems you said you had.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 class=&#38;quot;logo logobg2&#38;quot;&#38;gt;&#38;lt;a class=&#38;#39;ie6fix&#38;#39; href=&#38;quot;&#38;lt;?php echo get_settings(&#38;#39;home&#38;#39;); ?&#38;gt;/&#38;quot;&#38;gt;$$$$$$$&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Final step is to find line 93 in the same file (header.php) which looks llike&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/head&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;do not delete line 93, instead paste the code below *before line 93*&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;style&#38;gt;
#top .logo a {
text-indent: 1px !important;
font-size:1.9em !important;
font-weight:bold !important;
color:red !important;
}
#top .logo a:hover {
color:blue !important;
}
&#38;lt;/style&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I gave you a rollover, so you can change the color however you want, &#60;a href=&#34;http://www.clipular.com/c?5715098=gtqTxtQ5txa4NyfniRyj3WFnTwQ&#38;amp;f=.png&#34; rel=&#34;nofollow&#34;&#62;http://www.clipular.com/c?5715098=gtqTxtQ5txa4NyfniRyj3WFnTwQ&#38;amp;f=.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ronan3522 on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-111371</link>
			<pubDate>Wed, 15 May 2013 12:40:09 +0000</pubDate>
			<dc:creator>ronan3522</dc:creator>
			<guid isPermaLink="false">111371@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tried also to show my blog title &#38;amp; description instead of the blog logo using something like : &#60;code&#62;&#38;lt;h1 id=&#34;site-title&#34;&#38;gt;&#60;a&#62;&#34; title=&#34;&#38;lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&#38;gt;&#34; rel=&#34;home&#34;&#38;gt;&#38;lt;?php bloginfo( 'name' ); ?&#38;gt;&#60;/a&#62;&#38;lt;/h1&#38;gt;&#60;/code&#62; in the header.php&#60;/p&#62;
&#60;p&#62;but each time I got errratic position. The CSS given by Nick seems to be not working ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-98467</link>
			<pubDate>Tue, 26 Feb 2013 03:44:25 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">98467@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please add the CSS below to *the last line* of your /css/style1.css file&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .logo a, #top .logo a:hover {
text-indent: initial !important;
}
#top .logobg a {
background: initial !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you need further assistance, just add my name to the tag list.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>donovandp on "Display Site Title and Tagline"</title>
			<link>http://www.kriesi.at/support/topic/site-title-and-tagline-not-modifying#post-98413</link>
			<pubDate>Mon, 25 Feb 2013 20:15:29 +0000</pubDate>
			<dc:creator>donovandp</dc:creator>
			<guid isPermaLink="false">98413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have recently installed the Habitat theme and the first thing I did is change the Site title and Tagline via the Customize theme option, but it just won't reflect on the site.  It seems to be the Habitat default logo image.&#60;/p&#62;
&#60;p&#62;I have double checked it under Settings &#38;gt; General and it has definitely updated.&#60;/p&#62;
&#60;p&#62;Any suggestions on how to use these settings and not the logo?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
