<?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>Css-Web-Design</title>
	<atom:link href="http://www.css-web-design.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.css-web-design.com</link>
	<description>Web &#38; Design Resource</description>
	<lastBuildDate>Sat, 28 Jan 2012 00:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using multiple versions of jQuery in a single project.</title>
		<link>http://www.css-web-design.com/2012/01/27/using-multiple-versions-of-jquery-in-a-single-project/</link>
		<comments>http://www.css-web-design.com/2012/01/27/using-multiple-versions-of-jquery-in-a-single-project/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 23:18:10 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=338</guid>
		<description><![CDATA[I had an interesting issue where one script I was using wouldn&#8217;t work above 1.2.8 but for the remainder of the project I wanted to use the up to date jQuery version. After starting to rebuild the contribution and deciding against it I chose to try and setup multiple jQuery versions working alongside each other! [...]]]></description>
			<content:encoded><![CDATA[<p>I had an interesting issue where one script I was using wouldn&#8217;t work above 1.2.8 but for the remainder of the project I wanted to use the up to date jQuery version.</p>
<p>After starting to rebuild the contribution and deciding against it I chose to try and setup multiple jQuery versions working alongside each other! It turned out to be quick and easy so read on if you want to find out how:</p>
<p>Much like preparing jQuery for noConflict with other Libraries you can use this technique to run multiple version of jQuery too!</p>
<p>Regular preparation for noConflict:</p>
<pre>&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
   $.noConflict();
   jQuery(document).ready(function($) {
      // Code that uses jQuery's $ can follow here.
   });
   // Code that uses other library's $ can follow here.
&lt;/script&gt;</pre>
<p>Preparation using noConflict to use two versions of jQuery:</p>
<pre>&lt;script type="text/javascript" src="<a href="view-source:http://localhost/davidbrewer/latest/davidbrewer/jquery-1.2.6.js">jquery-1.2.8.js</a>"&gt;&lt;/script&gt;
&lt;script&gt;
   $jQuery_128 = $.noConflict(true);
&lt;/script&gt;
&lt;script&gt;
   // Link all your Js you want 128 linked to here!
   // Change your jQuery objects to "$jQuery_128"
   // eg:
   $jQuery_128(document).ready(function() {
      // You need to use the "$jQuery_128" namespace herein
   });
&lt;/script&gt;
&lt;script type="text/javascript" src="<a href="view-source:http://localhost/davidbrewer/latest/davidbrewer/jquery-1.2.6.js">jquery-latest.js</a>"&gt;&lt;/script&gt;
// Code that uses latest library follow on here!</pre>
<p>Because I set the [removeAll] all as true this disables the default namespaces:</p>
<pre>$jQuery_128 = jQuery.noConflict( [removeAll] )</pre>
<p>This mean that the &#8220;$&#8221; and &#8220;jQuery&#8221; namespaces no longer work for version 1.2.8 [as per example above] so this always requires the use of the newly assigned namespace &#8220;$jQuery_128&#8243;. Thus the latest version of jQuery running alongside this one can use the &#8220;$&#8221; and &#8220;jQuery&#8221; namespaces without problem.</p>
<p>Eg:</p>
<pre>$j_128(document).ready(function() {
   alert('We are using jQuery 1.2.8');
});</pre>
<p>That should just about do it! Run old alongside new!<br />
Give it a whirl.</p>
<p>Useful reference: <a title="jQuery noConflict" href="http://api.jquery.com/jQuery.noConflict/" target="_blank">http://api.jquery.com/jQuery.noConflict/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2012/01/27/using-multiple-versions-of-jquery-in-a-single-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I find the number of the current li when you click on it using jQuery?</title>
		<link>http://www.css-web-design.com/2012/01/27/how-do-i-find-the-number-of-the-current-li-using-jquery-when-you-click-on-it/</link>
		<comments>http://www.css-web-design.com/2012/01/27/how-do-i-find-the-number-of-the-current-li-using-jquery-when-you-click-on-it/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:51:13 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=332</guid>
		<description><![CDATA[If your catching the click from the &#8220;li&#8221; you can easily invoke the .index() to see which item has been clicked! Take a look at the code example below: $('ul li').click(function(){ $(this).index(); })]]></description>
			<content:encoded><![CDATA[<p>If your catching the click from the &#8220;li&#8221; you can easily invoke the .index() to see which item has been clicked! Take a look at the code example below:</p>
<pre>$('ul li').click(function(){
   $(this).index();
})</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2012/01/27/how-do-i-find-the-number-of-the-current-li-using-jquery-when-you-click-on-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Html email time again anybody?</title>
		<link>http://www.css-web-design.com/2012/01/25/html-email-time-again-anybody/</link>
		<comments>http://www.css-web-design.com/2012/01/25/html-email-time-again-anybody/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 14:34:20 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=333</guid>
		<description><![CDATA[Html email time again anybody? Well I haven&#8217;t done one in years until today! This is the daddy of CSS support in email clients which helped me out as well as help me avoid any pitfalls! http://www.campaignmonitor.com/css/ Oh and remember to display block those images and of course remember those tables ;-x]]></description>
			<content:encoded><![CDATA[<p>Html email time again anybody?</p>
<p>Well I haven&#8217;t done one in years until today!</p>
<p>This is the daddy of CSS support in email clients which helped me out as well as help me avoid any pitfalls!</p>
<p><a title="Campaign Monitor" href="http://www.campaignmonitor.com/css/" target="_blank">http://www.campaignmonitor.com/css/</a></p>
<p>Oh and remember to display block those images and of course remember those tables ;-x</p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2012/01/25/html-email-time-again-anybody/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta tag to run iPhone homescreen bookmark in App mode.</title>
		<link>http://www.css-web-design.com/2012/01/17/meta-tag-to-run-iphone-homescreen-bookmark-in-app-mode/</link>
		<comments>http://www.css-web-design.com/2012/01/17/meta-tag-to-run-iphone-homescreen-bookmark-in-app-mode/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 22:40:11 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=328</guid>
		<description><![CDATA[Simply pop in the following meta tag and when you add a site to your homescreen on subsequent launches from the homescreen the app will display in full screen. &#60;meta name=&#8221;apple-mobile-web-app-capable&#8221; content=&#8221;yes&#8221;&#62; Find out more and it&#8217;s customisation at: Apple&#8217;s meta tag reference page.]]></description>
			<content:encoded><![CDATA[<p>Simply pop in the following meta tag and when you add a site to your homescreen on subsequent launches from the homescreen the app will display in full screen.</p>
<p>&lt;meta name=&#8221;apple-mobile-web-app-capable&#8221; content=&#8221;yes&#8221;&gt;</p>
<p>Find out more and it&#8217;s customisation at: <a href="http://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariHTMLRef/Articles/MetaTags.html">Apple&#8217;s meta tag reference page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2012/01/17/meta-tag-to-run-iphone-homescreen-bookmark-in-app-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your Mac to read out what you write&#8230;</title>
		<link>http://www.css-web-design.com/2012/01/17/get-your-mac-to-read-out-what-you-write/</link>
		<comments>http://www.css-web-design.com/2012/01/17/get-your-mac-to-read-out-what-you-write/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 22:32:48 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=324</guid>
		<description><![CDATA[Classic one from back in the day! If you want to get your Apple Mac to read out what you write/type open up TextEdit from your applications. Once open type your text you want read out. Once written navigate through the TextEdit Nav to the following:Edit &#62; Speech &#62; Start Speaking]]></description>
			<content:encoded><![CDATA[<p>Classic one from back in the day!</p>
<p>If you want to get your Apple Mac to read out what you write/type open up TextEdit from your applications. Once open type your text you want read out.</p>
<p>Once written navigate through the TextEdit Nav to the following:<br />Edit &gt; Speech &gt; Start Speaking</p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2012/01/17/get-your-mac-to-read-out-what-you-write/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colorbox FAQ</title>
		<link>http://www.css-web-design.com/2011/11/11/colorbox-faq/</link>
		<comments>http://www.css-web-design.com/2011/11/11/colorbox-faq/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 09:50:27 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=321</guid>
		<description><![CDATA[http://jacklmoore.com/colorbox/faq/#faq-parent]]></description>
			<content:encoded><![CDATA[<p>http://jacklmoore.com/colorbox/faq/#faq-parent</p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2011/11/11/colorbox-faq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theathered Jailbreak to IOS 5 for free&#8230;</title>
		<link>http://www.css-web-design.com/2011/10/23/theathered-jailbreak-to-ios-5-for-free/</link>
		<comments>http://www.css-web-design.com/2011/10/23/theathered-jailbreak-to-ios-5-for-free/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 10:28:41 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=318</guid>
		<description><![CDATA[Theathered Jailbreak to IOS 5 for free&#8230; http://www.redmondpie.com/jailbreak-ios-5-on-iphone-4-3gs-ipad-ipod-touch-using-redsn0w-0.9.9b5-final-version-howto-video-tutorial/ Then unlock phone to all carriers&#8230; http://www.digitalmarketingtalk.com/iphone/how-to-unlock-iphone-3g-3-1-using-ultrasn0w/]]></description>
			<content:encoded><![CDATA[<p>Theathered Jailbreak to IOS 5 for free&#8230;<br />
<a href="http://www.redmondpie.com/jailbreak-ios-5-on-iphone-4-3gs-ipad-ipod-touch-using-redsn0w-0.9.9b5-final-version-howto-video-tutorial/">http://www.redmondpie.com/jailbreak-ios-5-on-iphone-4-3gs-ipad-ipod-touch-using-redsn0w-0.9.9b5-final-version-howto-video-tutorial/</a></p>
<p>Then unlock phone to all carriers&#8230;<br />
<a href="http://www.digitalmarketingtalk.com/iphone/how-to-unlock-iphone-3g-3-1-using-ultrasn0w/">http://www.digitalmarketingtalk.com/iphone/how-to-unlock-iphone-3g-3-1-using-ultrasn0w/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2011/10/23/theathered-jailbreak-to-ios-5-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Queries and JS Note.s</title>
		<link>http://www.css-web-design.com/2011/09/26/media-queries-and-js-note-s/</link>
		<comments>http://www.css-web-design.com/2011/09/26/media-queries-and-js-note-s/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 16:18:28 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=315</guid>
		<description><![CDATA[http://www.quirksmode.org/blog/archives/2010/08/combining_media.html]]></description>
			<content:encoded><![CDATA[<p>http://www.quirksmode.org/blog/archives/2010/08/combining_media.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2011/09/26/media-queries-and-js-note-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lion broken mBox Mail? Here&#8217;s a Fix&#8230;</title>
		<link>http://www.css-web-design.com/2011/08/12/lion-broken-mbox-mail-fluentfactory-a-fix/</link>
		<comments>http://www.css-web-design.com/2011/08/12/lion-broken-mbox-mail-fluentfactory-a-fix/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 23:35:17 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=289</guid>
		<description><![CDATA[Ok so I guess your running mBox with Mac Mail to achieve IMAP with Hotmail. So you upgraded to Lion and it&#8217;s broken? A crafty few have found out the fix! Here a step by step to help you on your way&#8230; STEP 1 Pop into finder select Go in the top menu and select [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so I guess your running <a title="mBox mail" href="http://fluentfactory.com/mboxmail-for-mac/">mBox</a> with Mac Mail to achieve IMAP with Hotmail. So you upgraded to Lion and it&#8217;s broken? A crafty few have found out the fix! Here a step by step to help you on your way&#8230;</p>
<p>STEP 1</p>
<p>Pop into finder select Go in the top menu and select the &#8216;Go to folder&#8230;&#8217; option.</p>
<p><img class="alignnone size-full wp-image-295" title="shot1" src="http://www.css-web-design.com/wp-content/uploads/shot1.png" alt="" width="335" height="423" /></p>
<p>STEP 2</p>
<p>Add in this path &#8216;/usr/local/FluentFactory/mBoxMail/mBoxMail&#8217; to locate this file.</p>
<p><img class="alignnone size-full wp-image-296" title="shot2" src="http://www.css-web-design.com/wp-content/uploads/shot2.png" alt="" width="425" height="124" /></p>
<p>STEP 3</p>
<p>Now you have found the mBoxMail executable you will need a hex editor to modify this. Also make a back-up of the mBoxMail file before you proceed to edit.</p>
<p>I used this hex editor &#8211; <a title="hexfiend" href="http://ridiculousfish.com/hexfiend/">hexFiend</a></p>
<p><img class="alignnone size-full wp-image-299" title="shot3" src="http://www.css-web-design.com/wp-content/uploads/shot3.png" alt="" width="128" height="105" /></p>
<p>STEP 4</p>
<p>Open up the mBoxMail in the hex editor. Command F and switch the search option to ASCII. Enter the &#8216;AUTH=PLAIN&#8217; in the search field and ten blank spaces in the replace &#8216;          &#8216;.</p>
<p><img class="alignnone size-full wp-image-301" title="shot4" src="http://www.css-web-design.com/wp-content/uploads/shot4.png" alt="" width="1049" height="777" /></p>
<p>Replace all and save the file.</p>
<p>If the file needs you may have to cmd+i the files properties and select &#8216;Read &amp; Write&#8217; for the permissions.</p>
<p>DONE! That did the trick and my Hotmail is back delivering mail to my inbox!</p>
<p><a href="http://forums.macrumors.com/archive/index.php/t-1191255.html">Thanks to the chaps here where I got the original mBox Lion fix &gt;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2011/08/12/lion-broken-mbox-mail-fluentfactory-a-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loooooooooooooool Digital Jesus</title>
		<link>http://www.css-web-design.com/2011/08/12/loooooooooooooool-digital-jesus/</link>
		<comments>http://www.css-web-design.com/2011/08/12/loooooooooooooool-digital-jesus/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 23:28:39 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.css-web-design.com/?p=291</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-292" title="digital_jesus" src="http://www.css-web-design.com/wp-content/uploads/digital_jesus.png" alt="" width="364" height="266" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.css-web-design.com/2011/08/12/loooooooooooooool-digital-jesus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

