<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Drawer Theme Important Notes</title>
	<atom:link href="http://www.rapid-ideas.com/wordpress/theme-section/drawer-theme-important-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rapid-ideas.com/wordpress</link>
	<description>Manuals, tips and news on using my themes and RapidWeaver in general</description>
	<lastBuildDate>Mon, 05 Sep 2011 06:01:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Alastair Nisbet</title>
		<link>http://www.rapid-ideas.com/wordpress/theme-section/drawer-theme-important-notes/comment-page-1/#comment-731</link>
		<dc:creator>Alastair Nisbet</dc:creator>
		<pubDate>Thu, 19 Nov 2009 23:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.rapid-ideas.com/wordpress/drawer-theme-important-notes/#comment-731</guid>
		<description>I like ability to add items so easily to the header or footer of pages using the enclosed snippets. I&#039;m using the footer for a series of quotes - it would be even better if I could rotate them or randomise them. I&#039;m sure there&#039;s a script that would do it but I always worry about overloading the pages with script - any ideas Chris ?

Alastair</description>
		<content:encoded><![CDATA[<p>I like ability to add items so easily to the header or footer of pages using the enclosed snippets. I&#8217;m using the footer for a series of quotes &#8211; it would be even better if I could rotate them or randomise them. I&#8217;m sure there&#8217;s a script that would do it but I always worry about overloading the pages with script &#8211; any ideas Chris ?</p>
<p>Alastair</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.rapid-ideas.com/wordpress/theme-section/drawer-theme-important-notes/comment-page-1/#comment-595</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 27 Oct 2009 15:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.rapid-ideas.com/wordpress/drawer-theme-important-notes/#comment-595</guid>
		<description>Great, thank you!!!</description>
		<content:encoded><![CDATA[<p>Great, thank you!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Richardet</title>
		<link>http://www.rapid-ideas.com/wordpress/theme-section/drawer-theme-important-notes/comment-page-1/#comment-594</link>
		<dc:creator>Christoph Richardet</dc:creator>
		<pubDate>Tue, 27 Oct 2009 14:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.rapid-ideas.com/wordpress/drawer-theme-important-notes/#comment-594</guid>
		<description>You need to use javascript. Add the following code to the javascript field in the page inspector:

&lt;code&gt;function goHome() {
	$$(&#039;#logo img&#039;).addEvent(&#039;click&#039;, function() {
		location.href=&#039;/&#039;;
	});
	$$(&#039;#logo img&#039;).addEvent(&#039;mouseover&#039;, function(e) {
		new Event(e).stop();
		$$(&#039;#logo img&#039;).setStyle(&#039;cursor&#039;, &#039;pointer&#039;);
	});
	$$(&#039;#logo img&#039;).addEvent(&#039;mouseout&#039;, function(e) {
		new Event(e).stop();
		$$(&#039;#logo img&#039;).setStyle(&#039;cursor&#039;, &#039;default&#039;);
	});
}

window.addEvent(&#039;domready&#039;, function(e) {
	goHome();
});&lt;/code&gt;

And to make the cursor change to pointer, you should add the following code to the css field in the page inspector:

&lt;code&gt;#logo img {
	position: relative;
	z-index: 500;
}
&lt;/code&gt;

Of course, if you want the user to be directed to anywhere else than the site root, you need to change the URL string in the javascript code.</description>
		<content:encoded><![CDATA[<p>You need to use javascript. Add the following code to the javascript field in the page inspector:</p>
<p><code>function goHome() {<br />
	$$('#logo img').addEvent('click', function() {<br />
		location.href='/';<br />
	});<br />
	$$('#logo img').addEvent('mouseover', function(e) {<br />
		new Event(e).stop();<br />
		$$('#logo img').setStyle('cursor', 'pointer');<br />
	});<br />
	$$('#logo img').addEvent('mouseout', function(e) {<br />
		new Event(e).stop();<br />
		$$('#logo img').setStyle('cursor', 'default');<br />
	});<br />
}</p>
<p>window.addEvent('domready', function(e) {<br />
	goHome();<br />
});</code></p>
<p>And to make the cursor change to pointer, you should add the following code to the css field in the page inspector:</p>
<p><code>#logo img {<br />
	position: relative;<br />
	z-index: 500;<br />
}<br />
</code></p>
<p>Of course, if you want the user to be directed to anywhere else than the site root, you need to change the URL string in the javascript code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.rapid-ideas.com/wordpress/theme-section/drawer-theme-important-notes/comment-page-1/#comment-593</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 27 Oct 2009 13:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rapid-ideas.com/wordpress/drawer-theme-important-notes/#comment-593</guid>
		<description>In the Drawer theme, how do you link the logo field to a site&#039;s home page (i.e. clicking on the logo in your browser returns the visitor to the home page)?  Does this require using Java or html?  I&#039;m a total newbie so explicit instructions would be much appreciated.  Thanks!</description>
		<content:encoded><![CDATA[<p>In the Drawer theme, how do you link the logo field to a site&#8217;s home page (i.e. clicking on the logo in your browser returns the visitor to the home page)?  Does this require using Java or html?  I&#8217;m a total newbie so explicit instructions would be much appreciated.  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

