<?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>TRYRDESIGN</title>
	<atom:link href="http://tryrdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tryrdesign.com</link>
	<description></description>
	<lastBuildDate>Fri, 13 Apr 2012 14:29:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Clear fields onclick onblur and other functions</title>
		<link>http://tryrdesign.com/code/jquery/clear-fields-onclick-onblur-and-other-functions/</link>
		<comments>http://tryrdesign.com/code/jquery/clear-fields-onclick-onblur-and-other-functions/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 15:01:20 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1706</guid>
		<description><![CDATA[[ input type="text" name="field-name-here" onclick="this.value='';" onfocus="this.select()" onblur="this.value=!this.value?'Enter Email To Get Updates':this.value;" value="Enter Email To Get Updates" />]]></description>
			<content:encoded><![CDATA[<pre><code>[ input type="text" name="field-name-here" onclick="this.value='';" onfocus="this.select()" onblur="this.value=!this.value?'Enter Email To Get Updates':this.value;" value="Enter Email To Get Updates" /></code></pre>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/jquery/clear-fields-onclick-onblur-and-other-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://tryrdesign.com/code/css/1703/</link>
		<comments>http://tryrdesign.com/code/css/1703/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 20:28:42 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1703</guid>
		<description><![CDATA[/**CSS ROUNDED CORNERS for Mozilla, Webkit, Linux, Opera, IE9**/ #Your-Div-Name{ -moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px; border-radius: 20px; }]]></description>
			<content:encoded><![CDATA[<p><code>/**CSS ROUNDED CORNERS for Mozilla, Webkit, Linux, Opera, IE9**/</p>
<p>#Your-Div-Name{<br />
-moz-border-radius: 20px;<br />
-webkit-border-radius: 20px;<br />
-khtml-border-radius: 20px;<br />
border-radius: 20px;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/css/1703/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tags for Development</title>
		<link>http://tryrdesign.com/wordpress/wordpress-tags-for-development/</link>
		<comments>http://tryrdesign.com/wordpress/wordpress-tags-for-development/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 15:28:19 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1605</guid>
		<description><![CDATA[WordPress Tags for Development While doing wordpress development here in Dallas, Tx. I find that I need a tag reference quite often. I lifted this from another site, but it should do the trick. If any other graphic designers, or web developers run across this, I hope it helps. &#60;?php if ( is_page(&#8216;about&#8217;)) { echo&#8230;]]></description>
			<content:encoded><![CDATA[<p><em>WordPress Tags for Development</em><br />
While doing wordpress development here in Dallas, Tx. I find that I need a tag reference quite often. I lifted this from another site, but it should do the trick. If any other graphic designers, or web developers run across this, I hope it helps.</p>
<p>&lt;?php if ( is_page(&#8216;about&#8217;)) { echo &#8216;&lt;div id=&#8221;secondnav&#8221;&gt;This is the super cool secondary navigation.&lt;/div&gt;&#8217;; } ?&gt;view raw example1.php This Gist brought to you by GitHub. The code is asking if the page is named &#8220;about&#8221;, if it is, it echo&#8217;s the div &#8220;secondnav&#8221;. If the page isn&#8217;t called &#8220;about&#8221; then it echo&#8217;s nothing and nothing is displayed. It&#8217;s that simple. If you want the nav to display on the &#8220;about&#8221;and &#8220;contact&#8221;page add this</p>
<p>&lt;?php if ( is_page(&#8216;about&#8217;) || is_page(&#8216;contact&#8217;)) { echo &#8216;&lt;div id=&#8221;secondnav&#8221;&gt;This is the super cool secondary navigation.&lt;/div&gt;&#8217;; } ?&gt;view raw example2.php This Gist brought to you by GitHub. One place I find myself using this a lot is loading javascript only on pages that need it. One problem of adding javascript links to your footer.php file is that they are called on everypage whether you need them or not. The simple way to call them only when need is to add them like this</p>
<p>&lt;?php if ( is_page(&#8216;about&#8217;)) { echo &#8216;&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&#8221;&gt;&lt;/script&gt;&#8217;; } ?&gt;view raw example3.php This Gist brought to you by GitHub. This works well for pages, but for your blog page and single posts you will need a different function.</p>
<p>For your blog page use is_home()</p>
<p>For your single posts use is_single()</p>
<p>WordPress provides a slew of other tags as well including</p>
<p>is_home(), is_front_page(), is_search(), is_404(), is_singular(), is_page(), is_attachment(), is_local_attachment(), is_single(), is_sticky(), is_archive(), is_category(), is_tag(), is_author(), is_date(), is_year(), is_month(), is_day(), is_time(), is_admin(), is_preview(), is_paged(), is_page_template(), is plugin active(), is_plugin_page(), is_new_day(), is_feed(), is_trackback(), is_comments_popup(), comments_open(), pings_open(), is_taxonomy(), is_taxonomy_hierarchical(), is_term(), is_user_logged_in(), is_blog_installed(), is_active_sidebar(), is_dynamic_sidebar(), is_active_widget()</p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/wordpress/wordpress-tags-for-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Favicons &amp; Icons for Sites</title>
		<link>http://tryrdesign.com/general/favicons-icons-for-sites/</link>
		<comments>http://tryrdesign.com/general/favicons-icons-for-sites/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 16:35:00 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1600</guid>
		<description><![CDATA[Here is the code required to add icons on apple supported devices. With Apple&#8217;s Reflective Shine: &#60; link rel=&#8221;apple-touch-icon&#8221; href=&#8221;somepath/image.png&#8221; / &#62; Without Apple&#8217;s Reflective Shine: &#60; link rel=&#8221;apple-touch-icon-precomposed&#8221; href=&#8221;somepath/image.png&#8221; / &#62; The recommended basic size for this icon is 57×57 pixels, with 90 degree corners; for best display on the higher-resolution iPhone 4 screen,&#8230;]]></description>
			<content:encoded><![CDATA[<p>Here is the code required to add icons on apple supported devices.</p>
<p>With Apple&#8217;s Reflective Shine:<br />
&lt; link rel=&#8221;apple-touch-icon&#8221; href=&#8221;somepath/image.png&#8221; / &gt;</p>
<p>Without Apple&#8217;s Reflective Shine:<br />
&lt; link rel=&#8221;apple-touch-icon-precomposed&#8221; href=&#8221;somepath/image.png&#8221; / &gt;</p>
<p>The recommended basic size for this icon is 57×57 pixels, with 90 degree corners; for best display on the higher-resolution iPhone 4 screen, an icon size of 114×114 pixels is recommended.[29][31][32]<br />
For the iPad and iPad2, the basic size is 72&#215;72 pixels with 90 degree corners. If the rumored next generation follows the same pattern as the iPhone and iPodTouch, the high-resolution size would be 144&#215;144 pixels.[33]</p>
<p><a href="http://tryrdesign.com/code/adding-a-favicon-to-pages/">Also see my other article</a></p>
<p>==========================================================<br />
I Grabbed this off the wikipedia page:</p>
<table>
<tbody>
<tr>
<th></th>
<th>Google Chrome</th>
<th>Internet Explorer</th>
<th>Firefox</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<th>
<div dir="ltr">
<div>
<pre>&lt;link rel="shortcut icon"
 href="http://example.com/myicon.ico" /&gt;</pre>
</div>
</div>
</th>
<td>Yes<sup id="cite_ref-msdn_3-4"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdn-3">[4]</a></sup></td>
<td>Yes<sup id="cite_ref-msdn_3-5"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdn-3">[4]</a></sup><sup id="cite_ref-jeffdavis_16-7"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-jeffdavis-16">[17]</a></sup></td>
<td>Yes<sup id="cite_ref-msdn_3-6"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdn-3">[4]</a></sup></td>
<td>Yes<sup id="cite_ref-msdn_3-7"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdn-3">[4]</a></sup></td>
<td>Yes</td>
</tr>
<tr>
<th>
<div dir="ltr">
<div>
<pre>&lt;link rel="icon"
 type="image/vnd.microsoft.icon"
 href="http://example.com/image.ico" /&gt;</pre>
</div>
</div>
</th>
<td>Yes</td>
<td>No<sup id="cite_ref-msdnrel_22-0"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdnrel-22">[23]</a></sup></td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th>
<div dir="ltr">
<div>
<pre>&lt;link rel="icon" type="image/png"
 href="http://example.com/image.png" /&gt;</pre>
</div>
</div>
</th>
<td>Yes</td>
<td>No<sup id="cite_ref-msdnrel_22-1"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdnrel-22">[23]</a></sup></td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th>
<div dir="ltr">
<div>
<pre>&lt;link rel="icon" type="image/gif"
 href="http://example.com/image.gif" /&gt;</pre>
</div>
</div>
</th>
<td>Yes</td>
<td>No<sup id="cite_ref-msdnrel_22-2"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-msdnrel-22">[23]</a></sup></td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th><code>favicon.ico</code> located in the web site&#8217;s root</th>
<td>Yes</td>
<td>Yes</td>
<td>Optional<sup id="cite_ref-23"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-23">[24]</a></sup></td>
<td>Optional<sup id="cite_ref-24"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-24">[25]</a></sup></td>
<td>Yes</td>
</tr>
<tr>
<th>precedence: prefer root or (X)HTML linked version</th>
<td><em><strong>?</strong></em></td>
<td>root<sup id="cite_ref-faviconic_20-24"><a href="http://en.wikipedia.org/wiki/Favicon#cite_note-faviconic-20">[21]</a></sup></td>
<td><em><strong>?</strong></em></td>
<td><em><strong>?</strong></em></td>
<td><em><strong>?</strong></em></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/general/favicons-icons-for-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tagging a telephone number in html</title>
		<link>http://tryrdesign.com/general/tagging-a-telephone-number-in-html/</link>
		<comments>http://tryrdesign.com/general/tagging-a-telephone-number-in-html/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 13:12:02 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1597</guid>
		<description><![CDATA[use the callto: feature, such as: < a href="callto:9725913086" title="Call us today">972.591.3086]]></description>
			<content:encoded><![CDATA[<p>use the callto: feature, such as:</p>
<p><code>
<pre>
< a href="callto:9725913086" title="Call us today">972.591.3086</a >
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/general/tagging-a-telephone-number-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3C Link Checker</title>
		<link>http://tryrdesign.com/code/w3c-tools/w3c-link-checker/</link>
		<comments>http://tryrdesign.com/code/w3c-tools/w3c-link-checker/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 05:17:43 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[W3C Tools]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1594</guid>
		<description><![CDATA[http://validator.w3.org/checklink]]></description>
			<content:encoded><![CDATA[<p><a target="_new" href="http://validator.w3.org/checklink"><img src="http://tryrdesign.com/wp-content/uploads/2012/01/linkchecker-300x60.jpg" alt="" title="W3C Link Checker" width="300" height="60" class="aligncenter size-medium wp-image-1595" /></a></p>
<p>http://validator.w3.org/checklink</p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/w3c-tools/w3c-link-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JW Player &#8211; Adding Custom Logos</title>
		<link>http://tryrdesign.com/code/html/jw-player-adding-custom-logos/</link>
		<comments>http://tryrdesign.com/code/html/jw-player-adding-custom-logos/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:18:39 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1590</guid>
		<description><![CDATA[Loading the player ... Other options for the JW Player 'logo.file': 'image.png', 'logo.hide': 'false', 'logo.over': '1', 'logo.out': '1', 'logo.position': 'bottom-right', 'logo.margin': '0', 'logo.link': 'link.html', 'logo.linktarget': '_blank',]]></description>
			<content:encoded><![CDATA[<p><code></p>
<div id="container">Loading the player ...</div>
<p><script type="text/javascript">
jwplayer("container").setup({
  flashplayer: "/video/jwplayer/player.swf",
  file: "/video/jwplayer/uploads/video.mp4",
  image: "/video/jwplayer/uploads/image.jpg",
  title: "",
  height:290,
  width:516,
  'logo.file':'/path/to/logo.png',
});
</script><br />
</code></p>
<h2>Other options for the JW Player</h2>
<p><code><br />
'logo.file': 'image.png',<br />
'logo.hide': 'false',<br />
'logo.over': '1',<br />
'logo.out': '1',<br />
'logo.position': 'bottom-right',<br />
'logo.margin': '0',<br />
'logo.link': 'link.html',<br />
'logo.linktarget': '_blank',<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/html/jw-player-adding-custom-logos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact Form 7 &#8211; Thank You Pages</title>
		<link>http://tryrdesign.com/wordpress/contact-form-7-thank-you-pages/</link>
		<comments>http://tryrdesign.com/wordpress/contact-form-7-thank-you-pages/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:09:45 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1587</guid>
		<description><![CDATA[on_sent_ok: "location.replace('http://www.website.co.uk/thank-you/');"]]></description>
			<content:encoded><![CDATA[<p><code>on_sent_ok: "location.replace('http://www.website.co.uk/thank-you/');"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/wordpress/contact-form-7-thank-you-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update WHMCS Password Info</title>
		<link>http://tryrdesign.com/code/mysql/update-whmcs-password-info/</link>
		<comments>http://tryrdesign.com/code/mysql/update-whmcs-password-info/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:07:58 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1585</guid>
		<description><![CDATA[update tbladmins set password=md5(&#8216;password&#8217;) where username=&#8217;username&#8217;]]></description>
			<content:encoded><![CDATA[<p>update tbladmins set password=md5(&#8216;password&#8217;) where username=&#8217;username&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/mysql/update-whmcs-password-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Onclick Functions in Different HTML Elements</title>
		<link>http://tryrdesign.com/code/html/onclick-functions-in-different-html-elements/</link>
		<comments>http://tryrdesign.com/code/html/onclick-functions-in-different-html-elements/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 22:01:02 +0000</pubDate>
		<dc:creator>Royce (Admin)</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://tryrdesign.com/?p=1583</guid>
		<description><![CDATA[onClick="javascript:window.location.href="main.jsp"]]></description>
			<content:encoded><![CDATA[<pre>onClick="javascript:window.location.href="main.jsp"</pre>
]]></content:encoded>
			<wfw:commentRss>http://tryrdesign.com/code/html/onclick-functions-in-different-html-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

