<?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 copyright info to footer</title>
		<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer</link>
		<description>Support Forum - Topic: Add copyright info to footer</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 05:52:54 +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-copyright-info-to-footer" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-3668</link>
			<pubDate>Sat, 28 Aug 2010 15:15:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">3668@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The themes folder should be deleted and replaced completely by the updated themes folder. Your wordpress database and media gallery (uploads) won't be affected in any way.Please make a backup of your old modified files.&#60;/p&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jlsclarity on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-3660</link>
			<pubDate>Sat, 28 Aug 2010 08:34:26 +0000</pubDate>
			<dc:creator>jlsclarity</dc:creator>
			<guid isPermaLink="false">3660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks James. If I update the theme will this replace the entire theme folder to where I will have to alter all files again, upload images etc? or is it truly an update where media files etc will be retained? Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-3109</link>
			<pubDate>Thu, 19 Aug 2010 11:36:54 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">3109@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The #footerwrap and #footer div's are in the latest version of Display (currently 2.0) and the footer file should have this code at the top of the page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;#39;wrapper&#38;#39; id=&#38;#39;footerwrap&#38;#39;&#38;gt;

	&#38;lt;div id=&#38;#39;footer&#38;#39;&#38;gt;
		&#38;lt;div class=&#38;#39;footer_widgets&#38;#39;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you need to update the theme, login to your Theme Forest account and re-download the theme, then upload to your site .
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jlsclarity on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-3018</link>
			<pubDate>Wed, 18 Aug 2010 09:23:45 +0000</pubDate>
			<dc:creator>jlsclarity</dc:creator>
			<guid isPermaLink="false">3018@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I cant find footerwrap OR footer DIV in footer.php! Am I missing something?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>moonstruck on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-2531</link>
			<pubDate>Wed, 11 Aug 2010 01:41:33 +0000</pubDate>
			<dc:creator>moonstruck</dc:creator>
			<guid isPermaLink="false">2531@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;All you need to do is define a block in footer for your copyright text and add there anything you wish.&#60;br /&#62;
Lets define a block in css.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
#ccopy&#60;br /&#62;
    width: 960px;   /*  Default width */&#60;br /&#62;
    height: 30px;   /*  Change it to your desired height */&#60;br /&#62;
    margin: 0 auto; /* This will centralize our div */&#60;br /&#62;
}&#60;br /&#62;
.clear{&#60;br /&#62;
    clear: both;    /*This will clear both sides */&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now go to footer.php file. Add the following code inside footerwrap and footer div (Just after end of footer div). Customize text as you wish.&#60;/p&#62;
&#60;p&#62;`&#60;code&#62;&#60;br /&#62;
        &#38;lt;div class=&#34;clear&#34;&#38;gt;&#38;lt;!-- empty div --&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
        &#38;lt;div id=&#34;ccopy&#34;&#38;gt;&#60;br /&#62;
            &#60;a href=&#34;http://twitter.com/mamunabms&#34;&#62;Say Hello&#60;/a&#62; &#38;lt;!-- Your desired text --&#38;gt;&#60;br /&#62;
        &#38;lt;/div&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Hope this will help.&#60;br /&#62;
Cheers!&#60;br /&#62;
moonstruck.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jlsclarity on "Add copyright info to footer"</title>
			<link>http://www.kriesi.at/support/topic/add-copyright-info-to-footer#post-2447</link>
			<pubDate>Tue, 10 Aug 2010 08:42:17 +0000</pubDate>
			<dc:creator>jlsclarity</dc:creator>
			<guid isPermaLink="false">2447@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! I would like to add small text and a link to the footer at the very bottom similar to all of Kriesi's other themes. I realize the copyright can be placed in the footer under the contact button but I would like text at the bottom like the Avisio theme has so I can place my link there:&#60;/p&#62;
&#60;p&#62;Design by Kriesi.at - Wordpress Themes&#60;/p&#62;
&#60;p&#62;Thank you!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
