<?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 - Forum: Habitat - Recent Posts</title>
		<link>http://www.kriesi.at/support/forum/habitat</link>
		<description>Support Forum - Forum: Habitat - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 19:00:15 +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/forum/habitat" 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>ronan3522 on "Metabox options in slideshow.php"</title>
			<link>http://www.kriesi.at/support/topic/metabox-options-in-slideshowphp#post-111352</link>
			<pubDate>Wed, 15 May 2013 10:38:47 +0000</pubDate>
			<dc:creator>ronan3522</dc:creator>
			<guid isPermaLink="false">111352@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm not a specialist, but i feel like there are some &#34;hidden&#34; options in that file.&#60;br /&#62;
Thanks ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Portfolio Error 404 Page Not Found"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-error-404-page-not-found#post-111303</link>
			<pubDate>Wed, 15 May 2013 05:50:25 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">111303@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tested the portfolio and it seems like only some items are affected: &#60;a href=&#34;http://www.screenr.com/kBI7&#34; rel=&#34;nofollow&#34;&#62;http://www.screenr.com/kBI7&#60;/a&#62;&#60;br /&#62;
Please check if these items share something (eg a certain category or a plugin manipulates them somehow, etc.).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Metabox options in slideshow.php"</title>
			<link>http://www.kriesi.at/support/topic/metabox-options-in-slideshowphp#post-111227</link>
			<pubDate>Wed, 15 May 2013 01:26:32 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">111227@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can find the available options for the slideshow on Habitat Options &#38;gt; Slideshow Options. &#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ronan3522 on "Metabox options in slideshow.php"</title>
			<link>http://www.kriesi.at/support/topic/metabox-options-in-slideshowphp#post-111187</link>
			<pubDate>Tue, 14 May 2013 19:38:33 +0000</pubDate>
			<dc:creator>ronan3522</dc:creator>
			<guid isPermaLink="false">111187@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;If you look in the slideshow.php, you'll find a # METABOX section with several advanced settings. The problem is that i cannot find those options anywhere in the theme settings. Somebody knows ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zannasf on "Portfolio Error 404 Page Not Found"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-error-404-page-not-found#post-111172</link>
			<pubDate>Tue, 14 May 2013 18:14:43 +0000</pubDate>
			<dc:creator>zannasf</dc:creator>
			<guid isPermaLink="false">111172@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;When I try to modify the permalinks to see if that makes a difference, nothing happens stays on the current permalink structure, even though the .htaccess has the correct rewrite code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zannasf on "Portfolio Error 404 Page Not Found"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-error-404-page-not-found#post-111170</link>
			<pubDate>Tue, 14 May 2013 18:07:13 +0000</pubDate>
			<dc:creator>zannasf</dc:creator>
			<guid isPermaLink="false">111170@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello. I've returned from vacation to find my portfolio is not functioning and each section is now returning an Error 404 Page Not Found. (www.picturiapress.com), can you help me?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Homepage is showing the full blog post of each post"</title>
			<link>http://www.kriesi.at/support/topic/homepage-is-showing-the-full-blog-post-of-each-post#post-108556</link>
			<pubDate>Thu, 02 May 2013 23:39:55 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108556@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try to edit index.php then find this code &#60;/p&#62;
&#60;p&#62;&#60;code&#62;the_content(&#38;#39;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Read more&#38;#39;,&#38;#39;habitat&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Replace it with&#60;/p&#62;
&#60;p&#62;&#60;code&#62;the_excerpt(&#38;#39;&#38;lt;span&#38;gt;&#38;#39;.__(&#38;#39;Read more&#38;#39;,&#38;#39;habitat&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt;&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fernon on "Homepage is showing the full blog post of each post"</title>
			<link>http://www.kriesi.at/support/topic/homepage-is-showing-the-full-blog-post-of-each-post#post-108446</link>
			<pubDate>Thu, 02 May 2013 15:11:05 +0000</pubDate>
			<dc:creator>fernon</dc:creator>
			<guid isPermaLink="false">108446@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Isn't it possible to program a function somewhere? That the text gets trimmed after 200 words for example. Because I've got more then 80 articles and otherwise I have to edit all the articles with the &#38;lt;!--more&#38;gt; tag.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "problem with tags"</title>
			<link>http://www.kriesi.at/support/topic/problem-with-tags#post-106415</link>
			<pubDate>Sun, 21 Apr 2013 07:31:20 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">106415@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Do you want to display the tag title? You can use following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;} elseif(is_tax()){
$term = get_term_by( &#38;#39;slug&#38;#39;, get_query_var( &#38;#39;term&#38;#39; ), get_query_var( &#38;#39;taxonomy&#38;#39; ) );
$output = __(&#38;#39;Archive for &#38;#39;,&#38;#39;habitat&#38;#39;).$term-&#38;gt;name;
$useTemplate = $term-&#38;gt;slug;
} elseif(is_tag()){
$output = __(&#38;#39;Archive for &#38;#39;,&#38;#39;habitat&#38;#39;).single_tag_title(&#38;#39;&#38;#39;, false);
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>wsoulrc on "problem with tags"</title>
			<link>http://www.kriesi.at/support/topic/problem-with-tags#post-106384</link>
			<pubDate>Sat, 20 Apr 2013 20:33:31 +0000</pubDate>
			<dc:creator>wsoulrc</dc:creator>
			<guid isPermaLink="false">106384@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi!,&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.miopencart.com/tag/fashion-mall/&#34; rel=&#34;nofollow&#34;&#62;http://www.miopencart.com/tag/fashion-mall/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;in category, yes&#60;br /&#62;
&#60;a href=&#34;http://www.miopencart.com/extensiones-opencart/&#34; rel=&#34;nofollow&#34;&#62;http://www.miopencart.com/extensiones-opencart/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;in archive.php &#60;/p&#62;
&#60;p&#62;} elseif(is_tax()){&#60;/p&#62;
&#60;p&#62;is&#60;/p&#62;
&#60;p&#62;} elseif(is_tag()){&#60;/p&#62;
&#60;p&#62;but dont work
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How to update .htaccess?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-update-htaccess#post-98696</link>
			<pubDate>Wed, 27 Feb 2013 15:21:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">98696@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi sarastenberg,&#60;/p&#62;
&#60;p&#62;The quickest route to figure out whats going on would be to just contact your hosting provider and ask for some guidance. Different servers have different setups and it may be a case where the file is hidden and needs to be shown or they don't allow access to it for some reason.&#60;/p&#62;
&#60;p&#62;Either way, it should be the least fuss route if you have a good host.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sarastenberg on "How to update .htaccess?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-update-htaccess#post-98661</link>
			<pubDate>Wed, 27 Feb 2013 11:54:45 +0000</pubDate>
			<dc:creator>sarastenberg</dc:creator>
			<guid isPermaLink="false">98661@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just tried to change the Permalink structure to custom structure but when I did that, it asked me to update my .htaccess. &#60;/p&#62;
&#60;p&#62;I tried this:&#60;/p&#62;
&#60;p&#62;1. Open an editing program (Notepad).&#60;br /&#62;
2. Copy and paste this code:&#60;br /&#62;
&#38;lt;IfModule mod_rewrite.c&#38;gt;&#60;br /&#62;
RewriteEngine On&#60;br /&#62;
RewriteBase /&#60;br /&#62;
RewriteRule ^index\.php$ - [L]&#60;br /&#62;
RewriteCond %{REQUEST_FILENAME} !-f&#60;br /&#62;
RewriteCond %{REQUEST_FILENAME} !-d&#60;br /&#62;
RewriteRule . /index.php [L]&#60;br /&#62;
&#38;lt;/IfModule&#38;gt;&#60;br /&#62;
3. Clicked Save (CTRL+S)&#60;br /&#62;
4. Change the filename to: .htaccess&#60;br /&#62;
5. And saved the file in the format &#34;All files&#34; not (txt). &#60;/p&#62;
&#60;p&#62;And then i saved the file in the same folder that i have my blog but it still dosent work.&#60;br /&#62;
What have I done wrong?
&#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>
		<item>
			<title>lpionek on "Adding Additional Social Media Icons (YouTube and Tumblr) to header"</title>
			<link>http://www.kriesi.at/support/topic/adding-additional-social-media-icons-youtube-and-tumblr-to-header#post-98052</link>
			<pubDate>Fri, 22 Feb 2013 14:43:21 +0000</pubDate>
			<dc:creator>lpionek</dc:creator>
			<guid isPermaLink="false">98052@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great! Everything is working perfectly. Thank you for your help. I also figured out that the original YouTube link prompts the website to attempt to open the page, for whatever reason, but I made the YouTube link into a bitmark, it works fine and goes directly to the page requested without a problem. &#60;/p&#62;
&#60;p&#62;Thank you for your help and patience!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Adding Additional Social Media Icons (YouTube and Tumblr) to header"</title>
			<link>http://www.kriesi.at/support/topic/adding-additional-social-media-icons-youtube-and-tumblr-to-header#post-97774</link>
			<pubDate>Thu, 21 Feb 2013 08:23:04 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">97774@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ipionek,&#60;/p&#62;
&#60;p&#62;Kindly open style.css and find this code (the code I gave above):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.social_bookmarks .youtube a {
background: transparent url(../images/shared/youtube_16.png) 0 0 no-repeat;
}
.social_bookmarks .tumbler a {
background: transparent url(../images/shared/tumbler_16.png) 0 0 no-repeat;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace it with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.social_bookmarks .youtube a {
background: transparent url(images/shared/youtube_16.png) 0 0 no-repeat;
}
.social_bookmarks .tumbler a {
background: transparent url(images/shared/tumbler_16.png) 0 0 no-repeat;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lpionek on "Adding Additional Social Media Icons (YouTube and Tumblr) to header"</title>
			<link>http://www.kriesi.at/support/topic/adding-additional-social-media-icons-youtube-and-tumblr-to-header#post-97747</link>
			<pubDate>Thu, 21 Feb 2013 05:32:13 +0000</pubDate>
			<dc:creator>lpionek</dc:creator>
			<guid isPermaLink="false">97747@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello again, &#60;/p&#62;
&#60;p&#62;So I have attempted this a few times in the past few days, and it isn't quite working. I believe the first set of coding added to header.php works as spots are created and when you hover over the areas (though nothing there) you can still get to the links. However, when I click on you YouTube invisible button spot, a pop-up shows up that says &#34;Image cannot be loaded. Make sure the path is correct and image exist.&#34; I have checked the path, and it is placed in the code correctly (&#60;a href=&#34;http://www.youtube.com/elizabethsauter)&#34; rel=&#34;nofollow&#34;&#62;http://www.youtube.com/elizabethsauter)&#60;/a&#62;. Additionally, it looks like the webpage is attempting to open a video (screen darkens, and process ticker shows up momentarily before &#34;Image cannot be loaded...&#34; message pops up. The Tumblr link works fine, but right now it is an invisible button as well. &#60;/p&#62;
&#60;p&#62;The invisible button part makes me think that there is something wrong with the 2nd line of code associated with style.css. However, the file names and location of the placed files are there. Should I replace the &#34;...&#34; portion of the retrieval link? I tried changing this as well in a few attempts and it didn't work. &#60;/p&#62;
&#60;p&#62;I hope there is some solution as I feel like we are almost there, but something is slightly off. Thank you for your continuation of help.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.elizabeth-sauter.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.elizabeth-sauter.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Adding Additional Social Media Icons (YouTube and Tumblr) to header"</title>
			<link>http://www.kriesi.at/support/topic/adding-additional-social-media-icons-youtube-and-tumblr-to-header#post-97181</link>
			<pubDate>Mon, 18 Feb 2013 07:33:04 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">97181@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ipionek,&#60;/p&#62;
&#60;p&#62;For those two icons, just add this after your twitter:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;li class=&#38;#39;youtube&#38;#39;&#38;gt;&#38;lt;a class=&#38;#39;ie6fix&#38;#39; href=&#38;#39;http://YOUTUBE_LINK&#38;#39;&#38;gt;youtube&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
echo &#38;quot;&#38;lt;li class=&#38;#39;tumbler&#38;#39;&#38;gt;&#38;lt;a class=&#38;#39;ie6fix&#38;#39; href=&#38;#39;http://TUMBLER_LINK&#38;#39;&#38;gt;tumbler&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;add your images/icons here: wp-content/themes/habitat/images/shared/&#60;br /&#62;
then finally, add this at the bottom of style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.social_bookmarks .youtube a {
background: transparent url(../images/shared/youtube_16.png) 0 0 no-repeat;
}
.social_bookmarks .tumbler a {
background: transparent url(../images/shared/tumbler_16.png) 0 0 no-repeat;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lpionek on "Adding Additional Social Media Icons (YouTube and Tumblr) to header"</title>
			<link>http://www.kriesi.at/support/topic/adding-additional-social-media-icons-youtube-and-tumblr-to-header#post-97159</link>
			<pubDate>Mon, 18 Feb 2013 06:33:29 +0000</pubDate>
			<dc:creator>lpionek</dc:creator>
			<guid isPermaLink="false">97159@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello, &#60;/p&#62;
&#60;p&#62;I have looked into other theme forums for adding additional social media icons (YouTube and Tumblr to be specific) to the header along with the pre-loaded twitter and facebook icons. I downloaded the matching icons suggested with the theme (&#60;a href=&#34;http://www.komodomedia.com/download/#social-network-icon-pack&#34; rel=&#34;nofollow&#34;&#62;http://www.komodomedia.com/download/#social-network-icon-pack&#60;/a&#62;) and placed in habitat/images/shared folder with the names youtube_16.png and tumbler_16.png. &#60;/p&#62;
&#60;p&#62;I added code to header.php under the pre-loaded icons: &#60;/p&#62;
&#60;p&#62;if($k_option['includes']['acc_fl'] != '')&#60;br /&#62;
				echo &#34;&#38;lt;li class='youtube'&#38;gt;&#60;a&#62;youtube&#60;/a&#62;&#34;;&#60;/p&#62;
&#60;p&#62;				if($k_option['includes']['acc_fl'] != '')&#60;br /&#62;
				echo &#34;&#38;lt;li class='tumblr'&#38;gt;&#60;a&#62;tumblr&#60;/a&#62;&#34;;&#60;/p&#62;
&#60;p&#62;However, I'm not sure where to add the link to the pngs so they will show up. So far, nothing has changed on the website with the addition of code. Please let me know if I need to change any of the code above. You can see the website I am working on here: &#60;a href=&#34;http://www.http://www.elizabeth-sauter.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.http://www.elizabeth-sauter.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95925</link>
			<pubDate>Sat, 09 Feb 2013 00:28:56 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">95925@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad Devin helped.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sarastenberg on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95907</link>
			<pubDate>Fri, 08 Feb 2013 22:10:41 +0000</pubDate>
			<dc:creator>sarastenberg</dc:creator>
			<guid isPermaLink="false">95907@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It works now! Thank you very much, it was really very nice of you. THANK YOU :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95905</link>
			<pubDate>Fri, 08 Feb 2013 21:46:34 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">95905@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Script added into the footer. Should work now.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sarastenberg on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95874</link>
			<pubDate>Fri, 08 Feb 2013 17:09:41 +0000</pubDate>
			<dc:creator>sarastenberg</dc:creator>
			<guid isPermaLink="false">95874@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That would be great. Thank you so much, I have sent an email with account information to you now.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95866</link>
			<pubDate>Fri, 08 Feb 2013 16:30:55 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">95866@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;If you can create a wordpress admin account for me I'll log in and see if I can add it in for you. &#60;/p&#62;
&#60;p&#62;You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn't grab it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sarastenberg on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95821</link>
			<pubDate>Fri, 08 Feb 2013 12:38:15 +0000</pubDate>
			<dc:creator>sarastenberg</dc:creator>
			<guid isPermaLink="false">95821@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;A way that is easy. I'm not so good at this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sarastenberg on "How do I hide the images file name?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-i-hide-the-images-file-name#post-95820</link>
			<pubDate>Fri, 08 Feb 2013 12:36:35 +0000</pubDate>
			<dc:creator>sarastenberg</dc:creator>
			<guid isPermaLink="false">95820@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Im sorry, I dont have a program so I can open the file wp-content/themes/habitat/js/custom.js and add the code. Is there another way to hide the images file name?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
