<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Guimkie &#187; Wordpress</title>
	<atom:link href="http://guimkie.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://guimkie.com</link>
	<description>Tutorials and great Mac software!</description>
	<lastBuildDate>Sun, 04 Dec 2011 21:05:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Beam Me Up Scotty!</title>
		<link>http://guimkie.com/wordpress/beam-me-up-scotty/</link>
		<comments>http://guimkie.com/wordpress/beam-me-up-scotty/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 18:14:28 +0000</pubDate>
		<dc:creator>Max (from Guimkie)</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Effects]]></category>

		<guid isPermaLink="false">http://guimkie.com/wordpress/beam-me-up-scotty/</guid>
		<description><![CDATA[Recently I have discovered this effects library called jQuery. It allows you to call advanced functions from the jQuery scripts without much coding that you write yourself.
If you really want to see what these scripts can do, then check out the jQuery demos.
Since this is such a great library, I thought I&#8217;d do a collection [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have discovered this effects library called <a target="_blank" href="http://jquery.com">jQuery</a>. It allows you to call advanced functions from the jQuery scripts without much coding that you write yourself.</p>
<p>If you really want to see what these scripts can do, then check out the jQuery <a href="http://jquery.com/demos">demos</a>.</p>
<p>Since this is such a great library, I thought I&#8217;d do a collection of tutorials showing all sorts of nice things. Today we are going to look at how to create a jQuery script to dynamically scroll the window back to the top if a link is clicked. This can also be used for anchors of any kind. It just makes this &#8220;in-page&#8221; linking much more attractive.</p>
<p>Not sure what I&#8217;m talking about it? Click <a href="#footer" id="beam-me-down-scotty-tutorial">here</a>.</p>
<p>Note: Apparently the link only works perfectly if you are on a page where there is not ability to post a comment. I haven&#8217;t fixed this issue yet &#8211; but I will soon do so!</p>
<p>I will focus on adding this to Wordpress but the method can also be applied for anything else.</p>
<p>We&#8217;ll start on the next page.</p>
<p><span id="more-86"></span></p>
<p style="text-align: center;">
<script type="text/javascript"><!--
google_ad_client = "pub-7241091367075931";
//Guimkie Header for Bubbled Theme
google_ad_slot = "4991557821";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p>
<p>If you want to use some sample HTML files using this script, then you can download my sample project <a href="http://guimkie.com/downloads/load.php?id=25">here</a>.</p>
<ol>
<li>First thing is to create a standard link in the location you want. Define the <code>href</code> to go to an anchor. Just using <code>#</code> will go to the top in most cases &#8211; but defining the specific position is better. Do not forget to give the link a unique ID!<br />You will also have to create your position to where the anchor link should lead. You can use anything you want, a <code>table</code>, a <code>div</code> or just a <code>paragraph</code> as long as you add the name tag to it.<br />Now, let&#8217;s do some examples:
<p>This code will make your page scroll back to the top:</p>
<p><code style="text-align: left;">&lt;div&gt;Header&lt;/div&gt;<br />
...<br />
&lt;a href="#" id="beam-me-up"&gt;Beam Me Up Scotty&lt;/a&gt;</code></p>
<p>For a link going to any other position in your HTML code could look like this:</p>
<p><code style="text-align: left;">&lt;p name="comments&gt;My Commments&lt;/p&gt;<br />
...<br />
&lt;a href="#comments" id="beam-to-comments"&gt;Beam To Comments&lt;/a&gt;</code></p>
<p>Notice that the <code>name</code> tag represents the value in the <code>href</code> tag in the link! The only difference is the <code>#</code> in front! Do not delete it.<br />This is just the standard linking for anchors.</li>
<li>Now test the code that you have added. They should just be some plain anchors jumping from one spot to another.<br /> If it works, then you need to download the latest jQuery set. <a href="http://jquery.com/download/">Download</a> the minimized script, the packed script and the normal script. I am using 1.2.2 for this tutorial.</li>
<li>Now upload the three scripts to your server and connect them with your files. For Wordpress, you open the <code>header.php</code> file of your Wordpress theme. In the <code>&lt;head&gt;</code> section you will have to add this:
<p><code style="text-align: left;"><br />
&lt;script src="path/to/jquery-files.js" type="text/javascript"&gt;&lt;/script&gt;<br />
</code></p>
<p>Do this for each of the three scripts. Make sure you use the names correctly.</li>
<li>Now you will have to create a Javascript file yourself. It sounds hard &#8211; but it is not! You will just use some finished codes. So as said, open any Text Editor and create a file named <code>custom.js</code>. Make sure you have the ending <code>.js</code>. Then, in the file, copy the following contents:
<p><code style="text-align: left;"><br />
$(document).ready(function() {</p>
<p>	// Beam Me Up Scotty<br />
	// Created using the Guimkie (www.guimkie.com) Tutorial.<br />
	// Thanks to the Learning jQuery (www.learningjquery.com) Tutorial.<br />
	// Please do not delete this note!</p>
<p>	$('#LINK-ID').click(function() {<br />
	if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')<br />
	&amp;&amp; location.hostname == this.hostname) {<br />
	var $target = $(this.hash);<br />
	$target = $target.length &amp;&amp; $target<br />
	|| $('[name=' + this.hash.slice(1) +']');<br />
	if ($target.length) {<br />
	var targetOffset = $target.offset().top;<br />
	$('html,body')<br />
	.animate({scrollTop: targetOffset}, 'SPEED-VALUE');<br />
	return false;<br />
	}<br />
	}<br />
	});</p>
<p>});<br />
</code></p>
</li>
<li>In the code above, you need to change two things. First, look for <code>LINK-ID</code>. Change it to the ID name you gave the link in step one!<br />Now look for <code>SPEED-VALUE</code> and change it to either <code>slow</code>, <code>fast</code> or a time specified in seconds.<br />Then save the file and upload it to the other jQuery files on your server. Make sure you also link it to your file! I.e.:
<p><code style="text-align:left;">&lt;script src="path/to/custom.js" type="text/javascript"&gt;&lt;/script&gt;</code></p>
</li>
<li>This is it! Save your files and test it! Now let your visitors enjoy great effects while clicking boring links on your site!<br />Again, if you need help or it did not work, <a href="http://guimkie.com/downloads/load.php?id=25">download</a> the sample files and see if you get it to work that way!
</li>
<p>I will be releasing more jQuery tutorials and I am already working on a plugin for Wordpress that will &#8230; (not telling).</p>
<p>Thanks to <a href="http://learningjquery.com">Learning jQuery</a> for teaching me how to do this!</p>
]]></content:encoded>
			<wfw:commentRss>http://guimkie.com/wordpress/beam-me-up-scotty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Newly Dressed</title>
		<link>http://guimkie.com/news/newly-dressed/</link>
		<comments>http://guimkie.com/news/newly-dressed/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 16:12:26 +0000</pubDate>
		<dc:creator>Max (from Guimkie)</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Bubbly]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://guimkie.com/news/newly-dressed/</guid>
		<description><![CDATA[Now that I am starting to write this post &#8211; I am actually wondering if it makes sense to write this. Because &#8230; telling you that I have redesigned my site is obvious, isn&#8217;t it? So why write a post about it? Lol!
Well, even if you have realized that the site is newly dressed, I [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I am starting to write this post &#8211; I am actually wondering if it makes sense to write this. Because &#8230; telling you that I have redesigned my site is obvious, isn&#8217;t it? So why write a post about it? Lol!</p>
<p>Well, even if you have realized that the site is newly dressed, I would like to &#8220;officially&#8221; state that I gave it a new dress. It is a <a target="_blank" href="http://wordpress.org">Wordpress</a> Theme named &#8220;Bubbly&#8221; that I plan to officially release when I&#8217;m finished with this one. Make sense? I just don&#8217;t want my design to be found twice around the world. <img src='http://guimkie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Enjoy the new look!</p>
]]></content:encoded>
			<wfw:commentRss>http://guimkie.com/news/newly-dressed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Curlz K2 Style Released</title>
		<link>http://guimkie.com/wordpress/curlz-k2-style-released/</link>
		<comments>http://guimkie.com/wordpress/curlz-k2-style-released/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 19:03:52 +0000</pubDate>
		<dc:creator>Max (from Guimkie)</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Curlz]]></category>
		<category><![CDATA[K2 Style]]></category>

		<guid isPermaLink="false">http://guimkie.com/wordpress/curlz-k2-style-released/</guid>
		<description><![CDATA[There you go, I had this K2 Style for my other site and have now pimped it up to be officially released. I hope you enjoy it.  
I had so many requests on this theme, not because of the colors or anything, but because of these swirls, twists or however you call them &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>There you go, I had this K2 Style for my other site and have now pimped it up to be officially released. I hope you enjoy it. <img src='http://guimkie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>I had so many requests on this theme, not because of the colors or anything, but because of these swirls, twists or however you call them &#8211; curls! That&#8217;s why I had to give this K2 Style to the world.</p>
<p>What&#8217;s a K2 Style? These are stylesheets for the Wordpress Theme called &#8220;<a href="http://getk2.com">K2</a>.&#8221; You will need <a href="http://getk2.com/download/">K2 RC3</a> for Curlz to work.</p>
<p style="text-align:center;"><img src="http://guimkie.com/files/images/curlz-screenshot.png" class="GUIMKIE-image"/></p>
<p>Interested in the style?</p>
<p><a href="http://guimkie.com/projects/wp-themes/curlz/">Click here</a> for more info about &#8220;Curlz.&#8221;</p>
<p><a href="http://guimkie.com/projects/wp-themes/curlz/">Download</a> &#8220;Curlz&#8221; here.</p>
<p><strong>Update 1:</strong> There was a problem with the footer image constantly shifting left or right depending on how wide your browser was. Stupid. I am trying to fix it right now.</p>
<p><strong>Update 2:</strong> Issue above has been solved and new version has been uploaded to the servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://guimkie.com/wordpress/curlz-k2-style-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Snow Theme Released</title>
		<link>http://guimkie.com/wordpress/snow-theme-released/</link>
		<comments>http://guimkie.com/wordpress/snow-theme-released/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 17:03:43 +0000</pubDate>
		<dc:creator>Max (from Guimkie)</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Snow Theme]]></category>

		<guid isPermaLink="false">http://guimkie.com/wordpress/snow-theme-released/</guid>
		<description><![CDATA[I just mentioned in the last post that I was working on a Wordpress theme &#8211; well, here it is! Beautiful as ever and most of the bugs fixed.
Click here for more info about &#8220;Snow Theme.&#8221;
Download &#8220;Snow Theme&#8221; here.
BTW &#8211; Yes I know, the theme does not have AJAX commenting yet &#8211; but I will [...]]]></description>
			<content:encoded><![CDATA[<p>I just mentioned in the last post that I was working on a Wordpress theme &#8211; well, here it is! Beautiful as ever and most of the bugs fixed.</p>
<p><a href="http://guimkie.com/projects/wp-themes/snow/">Click here</a> for more info about &#8220;Snow Theme.&#8221;</p>
<p><a href="http://guimkie.com/projects/wp-themes/snow/">Download</a> &#8220;Snow Theme&#8221; here.</p>
<p>BTW &#8211; Yes I know, the theme does not have AJAX commenting yet &#8211; but I will add them as soon as I know how to do it. <img src='http://guimkie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p><strong>Update 1:</strong> Lol, I just changed my site to the theme and realised that some links make you really go weeeiiirdddo. The normal link colors are to bright, so I just switched the hover into the normal state, and the normal state into the hover. Looks better <img src='http://guimkie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p><strong>Update 2:</strong> I just saw an article of how to integrate AJAX comments into a Wordpress theme. I am doing it right now and it already works. I just need to fix some CSS bugs.</p>
<p><strong>Update 3:</strong> So, AJAX commenting is now in the theme. I also added Tag support. Other bugs have also been fixed. Go ahead and download a pretty stable release.</p>
]]></content:encoded>
			<wfw:commentRss>http://guimkie.com/wordpress/snow-theme-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snow Theme for Wordpress</title>
		<link>http://guimkie.com/wordpress/snow-theme-for-wordpress/</link>
		<comments>http://guimkie.com/wordpress/snow-theme-for-wordpress/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 16:33:23 +0000</pubDate>
		<dc:creator>Max (from Guimkie)</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Snow Theme]]></category>

		<guid isPermaLink="false">http://guimkie.com/wordpress/snow-theme-for-wordpress/</guid>
		<description><![CDATA[I went completely crazy over the weekend and I ended up making a complete Wordpress Theme. The theme is called &#8220;Snow&#8221; and it looks just absolutely gorgeous. 
Don&#8217;t get shocked by the image below &#8211; it might not be looking good through there, but when you see it live and get to interact with it, [...]]]></description>
			<content:encoded><![CDATA[<p>I went completely crazy over the weekend and I ended up making a complete <a target="_blank" href="http://wordpress.org">Wordpress Theme</a>. The theme is called &#8220;Snow&#8221; and it looks just absolutely gorgeous. </p>
<p>Don&#8217;t get shocked by the image below &#8211; it might not be looking good through there, but when you see it live and get to interact with it, you&#8217;ll be amazed!!!</p>
<p>You can take a look at it right here:</p>
<p style="text-align:center;"><a href="http://guimkie.com/projects/wp-themes/snow/"><img src="http://guimkie.com/files/images/snow-demo.png" class="GUIMKIE-image"/></a></p>
<p>It&#8217;s not finished yet and has many, many bugs &#8211; but I will fix these last issues over the next week and the theme will then be available for free download.</p>
]]></content:encoded>
			<wfw:commentRss>http://guimkie.com/wordpress/snow-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

