<?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>Kool Kat Web Designs &#187; Mobile Websites</title>
	<atom:link href="http://www.koolkatwebdesigns.com/category/mobile-websites/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.koolkatwebdesigns.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:40:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Designing for mobile with HTML5</title>
		<link>http://www.koolkatwebdesigns.com/designing-for-mobile-with-html5/</link>
		<comments>http://www.koolkatwebdesigns.com/designing-for-mobile-with-html5/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 18:11:50 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=776</guid>
		<description><![CDATA[Seeking to leverage my HTML, CSS and jQuery skills, I decide to try to develop a web app aimed at mobile devices. I was able to add in Apple icons, geolocation and viewports but stumbled on a most fundamental point; what makes a good mobile design? Of course, I am still struggling with this but [...]]]></description>
			<content:encoded><![CDATA[<p>Seeking to leverage my HTML, CSS and <a href="http://jquery.com/" target="_blank">jQuery</a> skills, I decide to try to develop a web app aimed at mobile devices. I was able to add in Apple icons, geolocation and viewports but stumbled on a most fundamental point; what makes a good mobile design?</p>
<p>Of course, I am still struggling with this but really look forward to the mobile design workshop at <a href="http://aneventapart.com/2011/seattle/" target="_blank">Event Apart Seattle</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/designing-for-mobile-with-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPtouch Mobile and Custom Templates</title>
		<link>http://www.koolkatwebdesigns.com/wptouch-and-custom-templates/</link>
		<comments>http://www.koolkatwebdesigns.com/wptouch-and-custom-templates/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 02:54:46 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=648</guid>
		<description><![CDATA[WPtouch does not support custom post types or templates out of the box.   However, it is relatively straight-forward to get your custom posts to show up. For my website, there are two pages that use custom templates in its desktop or non-mobile modes. Each template uses a specific category to display the posts. The pages [...]]]></description>
			<content:encoded><![CDATA[<p>WPtouch does not support custom post types or templates out of the box.   However, it is relatively straight-forward to get your custom posts to show up. For my website, there are two <strong>pages </strong>that use custom templates in its desktop or non-mobile modes. Each template uses a specific category to display the posts. The pages are <a href="http://www.koolkatwebdesigns.com/blog/"> </a><a href="http://www.koolkatwebdesigns.com/blog/">http://www.koolkatwebdesigns.com/blog/</a> and <a href="http://www.koolkatwebdesigns.com/website-design-portfolio/">http://www.koolkatwebdesigns.com/website-design-portfolio/</a>.</p>
<p>At first, the mobile version of these pages had no content with only the page title and the social icons showing up. So, taking advantage of the child themes available in WPtouch 2.1, I took action. Here are the steps (excluding iPad):</p>
<ol>
<li>Select the <strong>Classic					(2.1)</strong> and click &#8220;Copy as child&#8221;.</li>
<li>Using your favorite FTP program copy the contents of wptouch-data/themes/classic-child-1 to your local computer.</li>
<li>Also copy <strong>page.php</strong> from wp-content/plugins/wptouch-pro/themes/classic/iphone to the wptouch-data/themes/classic-child-1 directory on your local computer.</li>
<li>Rename <strong>page.php </strong>in wptouch-data/themes/classic-child-1 directory on your local machine to <strong>page-{id}.php</strong>. Where <strong>id</strong> is the id of the page with the custom posts. So<strong>, </strong>in my case I ended up with<strong> page-5.php</strong> for my blog.</li>
<li>Edit the style.css in the same directory to include the following (you will see why later):
<ol>
<li>.blog-posts .content {<br />
display:block;<br />
}</li>
</ol>
</li>
<li>Since the <strong>WPTouch </strong>theme will generate classes that will cause your content to have the style <strong>display:none</strong>, edit your <strong>page-{id}.php</strong> and add blog-posts right after the second occurrence of rounded-corners-8px so you have a line like this:
<ol>
<li> &lt;div class=&#8221;&lt;?php wptouch_post_classes(); ?&gt; rounded-corners-8px blog-posts&#8221;&gt;</li>
</ol>
</li>
<li>Modify the line of code that has &lt;h2&gt;&lt;?php wptouch_the_title(); ?&gt;&lt;/h2&gt; so it can link to post to its single page display:
<ol>
<li>&lt;h2&gt;&lt;a href=&#8221;&lt;?php wptouch_the_permalink()?&gt;&#8221;&gt;&lt;?php wptouch_the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</li>
</ol>
</li>
<li>Now, its time the update the wordpress <a href="http://codex.wordpress.org/The_Loop" target="_blank">loop</a>.</li>
<li><strong>Replace </strong>the following lines of  code:
<ol>
<li>&lt;?php if ( wptouch_have_posts() ) { ?&gt;<br />
&lt;?php wptouch_the_post(); ?&gt;</li>
</ol>
</li>
<li>With this line (<strong>cat=10 </strong>should be replaced with what your post category is):
<ol>
<li>&lt;?php query_posts(&#8216;cat=10&#8242;); while (wptouch_have_posts()) : wptouch_the_post() ?</li>
</ol>
</li>
<li>Note the php style I am using here and if you use the same thing you will also need to replace the closing bracket with:
<ol>
<li>&lt;?php endwhile; ?&gt;</li>
</ol>
</li>
<li>Finally, call &lt;?php wp_reset_query(); ?&gt; <strong>before </strong>&lt;?php get_footer(); ?&gt;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/wptouch-and-custom-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPtouch</title>
		<link>http://www.koolkatwebdesigns.com/wptouch/</link>
		<comments>http://www.koolkatwebdesigns.com/wptouch/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 23:02:25 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Apps]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=405</guid>
		<description><![CDATA[In an attempt to become more mobile friendly, I decided to try out WPTouch 2.0 Pro. At a cost of $29.00 for a single user, it seemed worth the price. One of the things that intrigued me the most was the ability to have the mobile site run in &#8220;Web-App&#8221; mode. This would mean a [...]]]></description>
			<content:encoded><![CDATA[<p>In an attempt to become more mobile friendly, I decided to try out <a href="http://www.bravenewcode.com/products/wptouch-pro/" target="_blank">WPTouch 2.0 Pro</a>. At a cost of $29.00 for a single user, it seemed worth the price. One of the things that intrigued me the most was the ability to have the mobile site run in &#8220;Web-App&#8221; mode. This would mean a nice icons for my home page and quick access to the page. However, this feature is only available for iPhones/iPads so I was quite disappointed that it did not work on my Android phone. Despite this, I must say that the resulting website looks nice and does have that &#8220;mobile app&#8221; vibe.  Unfortunately, it does not seem to load all that fast and I am not sure there is really any significant gain in load time over a standard site.</p>
<p>I am hoping that the next release will be an improvement in speed and Android support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/wptouch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Websites</title>
		<link>http://www.koolkatwebdesigns.com/mobile-websites/</link>
		<comments>http://www.koolkatwebdesigns.com/mobile-websites/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 23:10:22 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=338</guid>
		<description><![CDATA[With mobile becoming more and more important, many web designers and developers are creating websites specifically for this platform. However, many sites designed for the computer web browser display reasonable well on smart phones. As a user of an Android-based phone, one thing that always annoys me is that phone numbers on the sites are [...]]]></description>
			<content:encoded><![CDATA[<p>With mobile becoming more and more important, many web designers and developers are creating websites specifically for this platform. However, many sites designed for the computer web browser display reasonable well on smart phones. As a user of an Android-based phone, one thing that always annoys me is that phone numbers on the sites are not clickable. Of course, if you code something like:</p>
<pre><code>&lt;a href="tel:+15551112222"&gt;555 111 2222&lt;/a&gt;</code></pre>
<p>you will get an error if you try to open the link in a computer web browser.</p>
<p>So, should we all at least use some &#8220;light detection&#8221; capabilities such as <a href="http://mobiforge.com/developing/story/lightweight-device-detection-php" target="_blank">Lightweight Device Detection in PHP</a>?  I am beginning to think this may become more and more important.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/mobile-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Kool Kat Web Designs on your mobile phone</title>
		<link>http://www.koolkatwebdesigns.com/find-kool-kat-web-designs-on-your-mobile-phone/</link>
		<comments>http://www.koolkatwebdesigns.com/find-kool-kat-web-designs-on-your-mobile-phone/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 01:00:24 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=279</guid>
		<description><![CDATA[Just take a picture with your barcode app on your smart phone.]]></description>
			<content:encoded><![CDATA[<p>Just take a picture with your barcode app on your smart phone.</p>
<div id="attachment_284" class="wp-caption alignnone" style="width: 360px"><img src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/chart.png" alt="" title="chart" width="350" height="350" class="size-full wp-image-284" /><p class="wp-caption-text">Kool Kat Web Designs QR Barcode</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/find-kool-kat-web-designs-on-your-mobile-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going Mobile</title>
		<link>http://www.koolkatwebdesigns.com/going-mobile/</link>
		<comments>http://www.koolkatwebdesigns.com/going-mobile/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 23:31:31 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=190</guid>
		<description><![CDATA[Having tried and then given up working a .mobi site, I decided to try WordPress Mobile Pack. So far, its working quite well although I see I need a few for tweaks and optimizations.]]></description>
			<content:encoded><![CDATA[<p>Having tried and then given up working a .mobi site, I decided to try <a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/" target="_blank">WordPress Mobile Pack</a>. So far, its working quite well although I see I need a few for tweaks and optimizations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/going-mobile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Kool Kat goes mobile</title>
		<link>http://www.koolkatwebdesigns.com/the-kool-kat-goes-mobile/</link>
		<comments>http://www.koolkatwebdesigns.com/the-kool-kat-goes-mobile/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 20:52:14 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://koolkatwebdesigns.com/blog/2008/03/20/the-kool-kat-goes-mobile/</guid>
		<description><![CDATA[Just launched my .mobi site. On your phone, just try koolkatwebdesigns.mobi]]></description>
			<content:encoded><![CDATA[<p>Just launched my .mobi site. On your phone, just try <a target="_blank" href="http://koolkatmobidesigns.com/"><span id="lw_1206044289_3" class="yshortcuts" style="background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">koolkatwebdesigns.mobi</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/the-kool-kat-goes-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does the iPhone mean for web designs?</title>
		<link>http://www.koolkatwebdesigns.com/what-does-the-iphone-mean-for-web-designs/</link>
		<comments>http://www.koolkatwebdesigns.com/what-does-the-iphone-mean-for-web-designs/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 15:28:40 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Mobile Websites]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://koolkatwebdesigns.com/blog/2007/06/29/what-does-the-iphone-mean-for-web-designs/</guid>
		<description><![CDATA[Of course the new iPhone uses a real web Browser, Safari. However, the actual screen size is quite small. Should web designers take this into account? I don’t really have the answer and hope other web designers will weight in on this topic.]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Of course the new iPhone uses a real web Browser, Safari. However, the actual screen size is quite small.  Should web designers take this into account? I don’t really have the answer and hope other web designers will weight in on this topic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/what-does-the-iphone-mean-for-web-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

