<?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 - Tag: blog title - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/blog-title</link>
		<description>Support Forum - Tag: blog title - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 01:30:29 +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/tags/blog-title" rel="self" type="application/rss+xml" />

		<item>
			<title>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-111005</link>
			<pubDate>Tue, 14 May 2013 03:40:37 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">111005@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Nick, that works perfectly! Thank you very much!! You may close this thread if you wish.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110953</link>
			<pubDate>Mon, 13 May 2013 23:29:35 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">110953@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please open up functions_enfold.php and locate lines 256 that looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($link)) $title = &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.$link.&#38;quot;&#38;#39; rel=&#38;#39;bookmark&#38;#39; title=&#38;#39;&#38;quot;.__(&#38;#39;Permanent Link:&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot; &#38;quot;.esc_attr( $title ).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$title.&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace them all with the lines below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if (!empty($link)) {
   if (is_single()) {
      $tmp_category = get_the_category();
      // var_dump($tmp_category[0]);
      if ($tmp_category[0]) $title = &#38;quot;
&#38;lt;a href=&#38;#39;&#38;quot; . get_category_link($tmp_category[0]-&#38;gt;term_id) . &#38;quot;&#38;#39; rel=&#38;#39;bookmark&#38;#39; title=&#38;#39;&#38;quot; . __(&#38;#39;Permanent Link:&#38;#39;, &#38;#39;avia_framework&#38;#39;) . &#38;quot; &#38;quot; . $tmp_category[0]-&#38;gt;cat_name . &#38;quot;&#38;#39;&#38;gt;
  &#38;quot; . $tmp_category[0]-&#38;gt;cat_name . &#38;quot;
&#38;lt;/a&#38;gt;
&#38;quot;;
   }
   else {
       $title = &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot; . $link . &#38;quot;&#38;#39; rel=&#38;#39;bookmark&#38;#39; title=&#38;#39;&#38;quot; . __(&#38;#39;Permanent Link:&#38;#39;, &#38;#39;avia_framework&#38;#39;) . &#38;quot; &#38;quot; . esc_attr($title) . &#38;quot;&#38;#39;&#38;gt;
  &#38;quot; . $title . &#38;quot;
&#38;lt;/a&#38;gt;
&#38;quot;;
   }
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thnks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110880</link>
			<pubDate>Mon, 13 May 2013 16:50:19 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">110880@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Peter,&#60;/p&#62;
&#60;p&#62;That did indeed fix the alignment. Thank you very much! The only thing that remains is the title of the blog (right) when viewing a single blog post. If you would have any idea about that, I'd much appreciate it. Thanks once again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110794</link>
			<pubDate>Mon, 13 May 2013 06:03:50 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">110794@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62;Insert following code into the quick css field:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;a.avia_image.avia-align-center{
display: block !important;
}

a.avia_image.avia-align-center img.avia_image {
margin: auto;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110701</link>
			<pubDate>Sun, 12 May 2013 19:57:17 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">110701@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Nick, my apologies, yes, the first image, the featured one, is correctly centered, but I've added another one below (above the icon list) and that is off center for me. I'm guessing the layout builder does not like me switching back and forth to mess about with shortcodes and such.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110699</link>
			<pubDate>Sun, 12 May 2013 19:22:53 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">110699@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am not sure what version of the theme is used in the demo. Since its release, Kriesi has made more improvements and upgrades in 3 weeks than most themes get in 2 years. He is back tomorrow so there will be probably another upgrade sometime around the corner.  &#60;/p&#62;
&#60;p&#62;I measured your image, and it is centered perfectly on my windows 7 chrome. Sorry I don't have retina , so perhaps its only on the mac. &#60;a href=&#34;http://i.imgur.com/2GikNCp.png&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/2GikNCp.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>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110662</link>
			<pubDate>Sun, 12 May 2013 08:13:42 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">110662@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I figured out the blurry text. I edited the blog post manually and removed all [av_textblock] shortcodes. It fixed the issue. I made another blogpost though and the image is not aligned in the center (&#60;a href=&#34;http://jeutie.info/tech-blog/redesign-complete/&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/tech-blog/redesign-complete/&#60;/a&#62;) The shortcode does imply it should be centered. Perhaps it is related to the arrow to go to the previous blog post. I do notice that my Blog Single Author Small layout looks different than the one in the theme demo. :-S
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110654</link>
			<pubDate>Sun, 12 May 2013 06:55:23 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">110654@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Nick,&#60;/p&#62;
&#60;p&#62;Thanks a lot for the quick support! That first piece of code did indeed fix the square issue. The code about the blurry text did not work. You can easily see it by viewing the text from the excerpt here (&#60;a href=&#34;http://jeutie.info/weightloss/&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/weightloss/&#60;/a&#62;) and then view the actual post here (&#60;a href=&#34;http://jeutie.info/weightloss/how-it-all-started/)&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/weightloss/how-it-all-started/)&#60;/a&#62;. The text from the excerpt looks much better (I'm using a Retina Macbook Pro).&#60;/p&#62;
&#60;p&#62;About the name of the page, it now gets the title of the blog page. I figured out how to remove the title without touching the breadcrumbs, but that does not look as good. I'd like it to pull the name of the category of the post instead. It should be similiar to the breadcrumbs as it displays correctly there (You are here:Home/Blog/Weight Loss/How it all started).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110650</link>
			<pubDate>Sun, 12 May 2013 06:28:16 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">110650@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Add this to your custom.css to fix the nice square issue&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.single .fullsize .template-blog .blog-meta {
width: 100%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;About the blurriness... I am not too good with that. My world is blurry, had laser eye surgery but forgot to take off my contacts. AHem. You can try this code and see if it does anything&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .avia_textblock{
webkit-perspective: none;
-webkit-backface-visibility: hidden;
-webkit-text-stroke: 0.24px
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I am still looking at the other one. Please reply in 7 hours or so if you hear nothing.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeutie on "Change title for single posts + issues with single posts"</title>
			<link>http://www.kriesi.at/support/topic/change-title-for-individual-blog-post#post-110409</link>
			<pubDate>Fri, 10 May 2013 17:03:58 +0000</pubDate>
			<dc:creator>jeutie</dc:creator>
			<guid isPermaLink="false">110409@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;When viewing a post within a category, the link in the header links to the blog rather than the category. (the left link) Because of this, the selected category is not underlined in the main header. I'd like to change this so when you go &#60;a href=&#34;http://jeutie.info/weightloss/how-it-all-started/&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/weightloss/how-it-all-started/&#60;/a&#62; here, the left would say Weight loss, and in the header it would be underlined. (like it is here: &#60;a href=&#34;http://jeutie.info/weightloss/)&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/weightloss/)&#60;/a&#62; Is this possible? I'm guessing it has something to do with the code found in the single.php file.&#60;br /&#62;
&#60;code&#62;if(avia_get_option('frontpage') &#38;amp;&#38;amp; $new = avia_get_option('blogpage'))&#60;br /&#62;
	{&#60;br /&#62;
		$title 	= get_the_title($new); //if the blog is attached to a page use this title&#60;br /&#62;
		$t_link = get_permalink($new);&#60;br /&#62;
		$t_sub =  avia_post_meta($new, 'subtitle');&#60;br /&#62;
	}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;ALSO&#60;/strong&#62; I think my featured image is having a problem. It is not a nice square. Take a look here: &#60;a href=&#34;http://jeutie.info/weightloss/how-it-all-started/&#34; rel=&#34;nofollow&#34;&#62;http://jeutie.info/weightloss/how-it-all-started/&#60;/a&#62; To add to that the text of the actual blog looks kind of blurry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Where is the Blog Title defined?"</title>
			<link>http://www.kriesi.at/support/topic/where-is-the-blog-title-defined#post-72025</link>
			<pubDate>Tue, 21 Aug 2012 04:02:45 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">72025@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi hiegl,&#60;/p&#62;
&#60;p&#62;Sorry for the late response. Anyway, Glad that you have resolved it. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hiegl on "Where is the Blog Title defined?"</title>
			<link>http://www.kriesi.at/support/topic/where-is-the-blog-title-defined#post-71877</link>
			<pubDate>Mon, 20 Aug 2012 12:05:26 +0000</pubDate>
			<dc:creator>hiegl</dc:creator>
			<guid isPermaLink="false">71877@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Found it in the lang files. Thanks anyway, Bernhard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hiegl on "Where is the Blog Title defined?"</title>
			<link>http://www.kriesi.at/support/topic/where-is-the-blog-title-defined#post-71654</link>
			<pubDate>Sat, 18 Aug 2012 09:50:24 +0000</pubDate>
			<dc:creator>hiegl</dc:creator>
			<guid isPermaLink="false">71654@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Now I wonder if I am doing this the right way?! How would you setup the default blog of the site? I created a page, selected this page in the WP settings as being the blog page, gave it a menu item in menu manager.&#60;br /&#62;
Now I changed this page to use the template post timeline and it works.&#60;br /&#62;
As described above clicking on one of the post titels in the timeline leads me to the single article view but the title of the page showing this article is &#34;Blog Letzten Neuigkeiten&#34;.&#60;br /&#62;
Pulling my hair out finding where this is defined. Must be easy but I am probably blind. ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hiegl on "Where is the Blog Title defined?"</title>
			<link>http://www.kriesi.at/support/topic/where-is-the-blog-title-defined#post-71528</link>
			<pubDate>Fri, 17 Aug 2012 09:47:15 +0000</pubDate>
			<dc:creator>hiegl</dc:creator>
			<guid isPermaLink="false">71528@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, we have set up a page using the template &#34;post timeline&#34;. This should be our blog page. After clicking on one of the article titles in this timeline I am lead to the single article view. Here the &#34;Page Title&#34;(?) says &#34;Blog Letzten Neuigkeiten&#34;. Where is this Title defined? Where can I change it?&#60;/p&#62;
&#60;p&#62;Thanks Bernhard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Blog Page Title Isues (please help me ASAP)"</title>
			<link>http://www.kriesi.at/support/topic/blog-page-title-isues-please-help-me-asap#post-63245</link>
			<pubDate>Mon, 02 Jul 2012 21:57:16 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">63245@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi chicagouser,&#60;/p&#62;
&#60;p&#62;I'm not sure what you mean. The individual blog posts don't have breadcrumb navigation (that I know of) so I'm not sure where to correct that. Can you provide a link to the post and the incorrect breadcrumb navigation?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chicagouser on "Blog Page Title Isues (please help me ASAP)"</title>
			<link>http://www.kriesi.at/support/topic/blog-page-title-isues-please-help-me-asap#post-63020</link>
			<pubDate>Sat, 30 Jun 2012 18:57:57 +0000</pubDate>
			<dc:creator>chicagouser</dc:creator>
			<guid isPermaLink="false">63020@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;on page showing page title correctly (this is test page You are here: Home » this is test page &#60;/p&#62;
&#60;p&#62;but on POST title  totally incorrect (Blog You are here: Home » Blog » test post » test page )&#60;/p&#62;
&#60;p&#62;how can i change BLOG title into Post Title?  i want same setting for Post title too which is for page&#60;/p&#62;
&#60;p&#62;please help me
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-26940</link>
			<pubDate>Wed, 14 Sep 2011 08:46:42 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">26940@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad this old topic could help you out :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JulieS on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-26919</link>
			<pubDate>Wed, 14 Sep 2011 04:45:26 +0000</pubDate>
			<dc:creator>JulieS</dc:creator>
			<guid isPermaLink="false">26919@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Worked for me too! (And saved me posting a new thread!)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17367</link>
			<pubDate>Tue, 19 Apr 2011 16:43:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17367@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o0o on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17365</link>
			<pubDate>Tue, 19 Apr 2011 16:33:26 +0000</pubDate>
			<dc:creator>o0o</dc:creator>
			<guid isPermaLink="false">17365@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It works! Great! Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17351</link>
			<pubDate>Tue, 19 Apr 2011 15:40:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17351@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In header.php replace:&#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;with:&#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;

&#38;lt;div class=&#38;quot;website-slogan&#38;quot;&#38;gt;
&#38;lt;br/&#38;gt;&#38;lt;h2&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;h3&#38;gt;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;); ?&#38;gt;&#38;lt;/h3&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and in style.css add following code (to the very bottom of the file):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.website-slogan{
position: absolute;
left: 200px;
top: 30px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;By adjusting the top and the left value you can position the website name + slogan where you want. If you increase the left value the slogan will move to the right, if you increae the top value the slogan will move towards the bottom.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o0o on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17291</link>
			<pubDate>Mon, 18 Apr 2011 11:36:24 +0000</pubDate>
			<dc:creator>o0o</dc:creator>
			<guid isPermaLink="false">17291@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry again, I meant both site name and slogan right-hand-sided to the logo (similar to your &#34;Cubit&#34;-theme). Your code puts them behind the logo... :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17225</link>
			<pubDate>Sun, 17 Apr 2011 11:11:01 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17225@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In header.php replace:&#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;with:&#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;

&#38;lt;br/&#38;gt;&#38;lt;h2&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;&#38;lt;br/&#38;gt;
&#38;lt;h3&#38;gt;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;); ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This will add the site name + slogan underneath the logo.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o0o on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17219</link>
			<pubDate>Sun, 17 Apr 2011 09:06:01 +0000</pubDate>
			<dc:creator>o0o</dc:creator>
			<guid isPermaLink="false">17219@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Oh sorry, wrong support forum. I'm using habitat... :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17210</link>
			<pubDate>Sun, 17 Apr 2011 07:08:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17210@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Which theme do you use? Avisio?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>o0o on "How to remove &#34;HOME&#34; in the menu?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-home-in-the-menu#post-17144</link>
			<pubDate>Fri, 15 Apr 2011 17:54:50 +0000</pubDate>
			<dc:creator>o0o</dc:creator>
			<guid isPermaLink="false">17144@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I would like to put the blog title (as referred in WP Settings) next (right hand) to the logo and the blog slogan beneath (maybe in a smaller typo). Any ideas...?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-15966</link>
			<pubDate>Wed, 30 Mar 2011 08:46:39 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15966@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>colorit on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-15963</link>
			<pubDate>Wed, 30 Mar 2011 08:03:07 +0000</pubDate>
			<dc:creator>colorit</dc:creator>
			<guid isPermaLink="false">15963@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Works fine, thank you very much.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-15937</link>
			<pubDate>Wed, 30 Mar 2011 06:07:03 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15937@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up kclass_breadcrumb.php (avisio\framework\classes) and search for following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;p class=&#38;quot;breadcrumb&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;breadcrumb_info ie6fix&#38;quot;&#38;gt;You are here:&#38;lt;/span&#38;gt; &#38;lt;a href=&#38;quot;&#38;#39;.get_option(&#38;#39;home&#38;#39;).&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
		bloginfo(&#38;#39;name&#38;#39;);
		echo &#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change it to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;p class=&#38;quot;breadcrumb&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;breadcrumb_info ie6fix&#38;quot;&#38;gt;You are here:&#38;lt;/span&#38;gt; &#38;lt;a href=&#38;quot;&#38;#39;.get_option(&#38;#39;home&#38;#39;).&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
		echo &#38;quot;Home&#38;quot;;
		echo &#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>colorit on "Breadcrumbs: how to show &#34;Home&#34; instead of blog title in the breadcrumbs?"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-how-to-show-home-instead-of-blog-title-in-the-breadcrumbs#post-15914</link>
			<pubDate>Tue, 29 Mar 2011 23:59:31 +0000</pubDate>
			<dc:creator>colorit</dc:creator>
			<guid isPermaLink="false">15914@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;in the breadcrumb line, for example at the contact page, it shows the little home icon and after it the blog title and then an arrow and &#34;contact&#34;.&#60;/p&#62;
&#60;p&#62;My blog title is my name and it does not look good, if in the breadcrumbs the name is mentioned.&#60;/p&#62;
&#60;p&#62;How can I change in the breadcrumb line - after the home icon - the blog title to the word &#34;home&#34;?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
