<?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>MHunt Design &#187; CSS</title>
	<atom:link href="http://mhuntdesign.com/blog/articles/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhuntdesign.com/blog</link>
	<description>Web Design Resources and Recommended Reading</description>
	<lastBuildDate>Thu, 17 May 2012 19:39:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Adjacent Sibling Selector</title>
		<link>http://mhuntdesign.com/blog/css/adjacent-sibling-selector/</link>
		<comments>http://mhuntdesign.com/blog/css/adjacent-sibling-selector/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 04:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://mhuntdesign.com/blog/?p=711</guid>
		<description><![CDATA[I recently needed to style some Drupal blocks so that the first one in the series always received top rounded corners. I tested out how combining the adjacent sibling selector with decedent selectors would work. The declaration here acts more like a condition. block-2 is by default the top block in my sidebar.  Only the [...]
Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/' rel='bookmark' title='Using the General Sibling Selector (CSS)'>Using the General Sibling Selector (CSS)</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-06-8-10-06-11-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 06-8-10 &#8211; 06-11-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 06-8-10 &#8211; 06-11-10</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-12-2-10-12-8-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 12-2-10 &#8211; 12-8-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 12-2-10 &#8211; 12-8-10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fadjacent-sibling-selector%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fadjacent-sibling-selector%2F&amp;source=mhuntdesign&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I recently needed to style some Drupal blocks so that the first one in the series always received top rounded corners. I tested out how combining the adjacent sibling selector with decedent selectors would work. The declaration here acts more like a condition. block-2 is by default the top block in my sidebar.  Only the first block to show gets a rounded corner top.</p>
<p><span id="more-711"></span></p>
<p><img class="alignnone size-full wp-image-740" title="adjacent-selector-label" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/08/adjacent-selector-label.png" alt="" width="234" height="401" /></p>
<p><strong>Here is #block-2 as the first block:</strong></p>
<p><img class="alignnone size-full wp-image-737" title="adjacent-selector-1" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/08/adjacent-selector-1.png" alt="" width="227" height="235" /></p>
<p><strong>#block-1 as the first block:</strong></p>
<p><img class="alignnone size-full wp-image-738" title="adjacent-selector-2" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/08/adjacent-selector-2.png" alt="" width="234" height="401" /></p>
<p><code>#block-2  .block-inner {<br />
border-top-right-radius :6px;<br />
border-top-left-radius     :6px;<br />
}</code></p>
<p>#block-1 + #block-2 .block-inner {<br />
border-radius 	:0px;<br />
border-top: 0 none;<br />
}</p>
<p>For more info see: <a href="http://reference.sitepoint.com/css/adjacentsiblingselector">http://reference.sitepoint.com/css/adjacentsiblingselector</a></p>
<h3><strong>Why didn&#8217;t I use the :first-child selector instead?</strong></h3>
<p><code>#sidebar-left .block:first-child .block-inner {<br />
border-top-right-radius:6px;<br />
border-top-left-radius:6px;<br />
}<br />
</code><br />
I guess I could have. But the adjacent selector has better browser compatibility. Trust me I think that this code is much more effective because there is no guess work involved here, doesn&#8217;t matter what the block ID is:</p>
<p>Besides, it was more fun to see how the adjacent sibling selector can work with a decent selector combination.</p>
<p>Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/' rel='bookmark' title='Using the General Sibling Selector (CSS)'>Using the General Sibling Selector (CSS)</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-06-8-10-06-11-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 06-8-10 &#8211; 06-11-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 06-8-10 &#8211; 06-11-10</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-12-2-10-12-8-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 12-2-10 &#8211; 12-8-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 12-2-10 &#8211; 12-8-10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mhuntdesign.com/blog/css/adjacent-sibling-selector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the General Sibling Selector (CSS)</title>
		<link>http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/</link>
		<comments>http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 19:50:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://mhuntdesign.com/blog/?p=719</guid>
		<description><![CDATA[The general sibling selector can be very useful in reducing css code in your style sheets and in your html. Example: You have a thumbnail image to the left of a few paragraphs and you don&#8217;t want them to wrap below the image. Instead of using a wrapper div for your paragraphs, you can simple [...]
Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/css/adjacent-sibling-selector/' rel='bookmark' title='Adjacent Sibling Selector'>Adjacent Sibling Selector</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-01-12-11-01-15-11/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 01-12-11 &#8211; 01-15-11'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 01-12-11 &#8211; 01-15-11</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-09-4-10-09-11-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 09-4-10 &#8211; 09-11-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 09-4-10 &#8211; 09-11-10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fusing-the-general-sibling-selector-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fusing-the-general-sibling-selector-css%2F&amp;source=mhuntdesign&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The general sibling selector can be very useful in reducing css code in your style sheets and in your html.</p>
<h3>Example:</h3>
<p>You have a thumbnail image to the left of a few paragraphs and you don&#8217;t want them to wrap below the image.</p>
<p><img class="aligncenter size-full wp-image-720" title="General Sibling Selector Example" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/08/general-sibling-selector.png" alt="" width="431" height="360" /></p>
<p>Instead of using a wrapper div for your paragraphs, you can simple use one declaration:<br />
<code><br />
img ~ p {padding-left:122px;}</code></p>
<p>This means that all general siblings of an img element will have a left padding value of 122px.</p>
<h3>What about older Browsers?</h3>
<p>See: <a href="http://reference.sitepoint.com/css/generalsiblingselector">http://reference.sitepoint.com/css/generalsiblingselector</a></p>
<p><img class="size-full wp-image-722 alignnone" title="general-sibling-selector-compatibility" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/08/general-sibling-selector-compatibility.png" alt="" width="584" height="266" /></p>
<p>In my case, I was not planning on having more than 298 elements, seems excessive. In that case you would want to use a wrapper div for those paragraphs.  As for IE6, I say let the text wrap!</p>
<p>Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/css/adjacent-sibling-selector/' rel='bookmark' title='Adjacent Sibling Selector'>Adjacent Sibling Selector</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-01-12-11-01-15-11/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 01-12-11 &#8211; 01-15-11'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 01-12-11 &#8211; 01-15-11</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-09-4-10-09-11-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 09-4-10 &#8211; 09-11-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 09-4-10 &#8211; 09-11-10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a CSS3 border fadeout</title>
		<link>http://mhuntdesign.com/blog/css/how-to-create-a-css3-border-fadeout/</link>
		<comments>http://mhuntdesign.com/blog/css/how-to-create-a-css3-border-fadeout/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 17:56:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://mhuntdesign.com/blog/?p=639</guid>
		<description><![CDATA[With CSS3, you can create a border that fades out gradually using the :before and :after css pseudo classes and css gradients. I haven&#8217;t seen this technique done anywhere so I decided to post it. It was inspired by the Multiple Borders technique posted by Jeffery Way you can actually do a lot using the [...]
Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/apple/how-to-create-a-custom-apple-ipadiphone-home-screen-icon-for-your-website/' rel='bookmark' title='How to create a custom Apple iPad/iPhone Home screen icon for your Website'>How to create a custom Apple iPad/iPhone Home screen icon for your Website</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-wordpress-web-design-drupal-development-04-12-11-04-13-11/' rel='bookmark' title='Freelance WordPress Web Design, Drupal Development 04-12-11 &#8211; 04-13-11'>Freelance WordPress Web Design, Drupal Development 04-12-11 &#8211; 04-13-11</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-07-20-10-07-22-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 07-20-10 &#8211; 07-22-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 07-20-10 &#8211; 07-22-10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fhow-to-create-a-css3-border-fadeout%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fcss%2Fhow-to-create-a-css3-border-fadeout%2F&amp;source=mhuntdesign&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="aligncenter size-full wp-image-640" title="borderfadeout" src="http://mhuntdesign.com/blog/wp-content/uploads/2010/07/borderfadeout.png" alt="" width="671" height="395" />With CSS3, you can create a border that fades out gradually using the :before and :after css pseudo classes and css gradients.</p>
<p>I haven&#8217;t seen this technique done anywhere so I decided to post it. It was inspired by the <a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-multiple-borders-with-simple-css/">Multiple Borders technique posted by Jeffery Way</a> you can actually do a lot using the before and after pseudo classes, adding elements to one element that is not considered part of the html structure or the document flow(if positioned absolutely).</p>
<p><a href="http://aws.mhuntdesign.com/playground/borderfade/index.html"><strong>View the demo</strong></a> |   <a href="http://aws.mhuntdesign.com/playground/borderfade/borderfade.zip"><strong>Download the source</strong></a></p>
<p>Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/apple/how-to-create-a-custom-apple-ipadiphone-home-screen-icon-for-your-website/' rel='bookmark' title='How to create a custom Apple iPad/iPhone Home screen icon for your Website'>How to create a custom Apple iPad/iPhone Home screen icon for your Website</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-wordpress-web-design-drupal-development-04-12-11-04-13-11/' rel='bookmark' title='Freelance WordPress Web Design, Drupal Development 04-12-11 &#8211; 04-13-11'>Freelance WordPress Web Design, Drupal Development 04-12-11 &#8211; 04-13-11</a></li>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-07-20-10-07-22-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 07-20-10 &#8211; 07-22-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 07-20-10 &#8211; 07-22-10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mhuntdesign.com/blog/css/how-to-create-a-css3-border-fadeout/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web Design Resources: April 4th through April 8th</title>
		<link>http://mhuntdesign.com/blog/apple/web-design-resources-april-4th-through-april-8th/</link>
		<comments>http://mhuntdesign.com/blog/apple/web-design-resources-april-4th-through-april-8th/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:02:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://mhuntdesign.com/blog/?p=475</guid>
		<description><![CDATA[My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on&#8230; Color Inspiration: Go Green with Envy &#124; Nettuts+ - Google Buzz - Ubercart &#124; drupal.org - The New Hotness: Using CSS3 Visual Effects &#8211; Smashing Magazine - Safari DOM Extensions Reference - Safari [...]
Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-05-17-10-05-19-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 05-17-10 &#8211; 05-19-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 05-17-10 &#8211; 05-19-10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fapple%2Fweb-design-resources-april-4th-through-april-8th%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fapple%2Fweb-design-resources-april-4th-through-april-8th%2F&amp;source=mhuntdesign&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on&#8230;</p>
<ul>
<li><a href="http://net.tutsplus.com/articles/web-roundups/color-inspiration-go-green-with-envy/">Color Inspiration: Go Green with Envy | Nettuts+</a> -</li>
<li><a href="http://www.google.com/buzz">Google Buzz</a> -</li>
<li><a href="http://drupal.org/project/ubercart">Ubercart | drupal.org</a> -</li>
<li><a href="http://www.smashingmagazine.com/2010/01/25/the-new-hotness-using-css3-visual-effects/">The New Hotness: Using CSS3 Visual Effects &#8211; Smashing Magazine</a> -</li>
<li><a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariJSRef/index.html#//apple_ref/doc/uid/TP40001482">Safari DOM Extensions Reference</a> -</li>
<li><a href="http://developer.apple.com/safari/library/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009523">Safari HTML5 Audio and Video Guide: Introduction</a> &#8211; &#8220;HTML5 is the next major version of HTML, the primary standard that determines how web content interacts with browsers.&#8221;</li>
<li><a href="http://developer.apple.com/safari/library/technotes/tn2010/tn2262.html">Technical Note TN2262: Preparing Your Web Content for iPad</a> &#8211; Use -webkit-user-select:none; to disable cut/copy/paste option in Safari on iPhone OS. Use -webkit-appearance: none to remove styling from form elements</li>
<li><a href="http://www.apple.com/ipad/ready-for-ipad/">Apple &#8211; iPad-ready websites</a> &#8211; &#8220;iPad features Safari, a mobile web browser that supports the latest web standards — including HTML5, CSS3, and JavaScript.&#8221;</li>
<li><a href="http://docs.jquery.com/Plugins/Validation">Plugins/Validation &#8211; jQuery JavaScript Library</a> -</li>
<li><a href="http://wordpress.org/extend/plugins/white-label-cms/">WordPress › White Label CMS « WordPress Plugins</a> &#8211; The White Label CMS plugin allows you to remove all the panels from the WordPress dashboard and insert your own panel, which you can use to write a personalised message to your client and link to the important elements in the CMS.</li>
<li><a href="http://www.videousermanuals.com/">WordPress Manual Plugin &#8211; Video Tutorials For Your Clients</a> -</li>
</ul>
<p>Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/bookmarks/freelance-web-design-drupal-development-wordpress-seo-jquery-css-05-17-10-05-19-10/' rel='bookmark' title='Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 05-17-10 &#8211; 05-19-10'>Freelance Web Design: Drupal Development, WordPress, SEO, jQuery, CSS: 05-17-10 &#8211; 05-19-10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mhuntdesign.com/blog/apple/web-design-resources-april-4th-through-april-8th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Books in Coda</title>
		<link>http://mhuntdesign.com/blog/apple/how-to-create-books-in-coda/</link>
		<comments>http://mhuntdesign.com/blog/apple/how-to-create-books-in-coda/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:03:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mhuntdesign.com/blog/?p=238</guid>
		<description><![CDATA[Coda allows you to add reference books under the &#8216;Books&#8217; tab. More information on adding books to Coda: Adding more coda books tutorial Google Groups: Coda Book Cover Template Adding Sitepoint Reference Books to Coda Related Post: How to export or save sites in coda Related posts: How to create a custom Apple iPad/iPhone Home [...]
Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/apple/how-to-create-a-custom-apple-ipadiphone-home-screen-icon-for-your-website/' rel='bookmark' title='How to create a custom Apple iPad/iPhone Home screen icon for your Website'>How to create a custom Apple iPad/iPhone Home screen icon for your Website</a></li>
<li><a href='http://mhuntdesign.com/blog/css/how-to-create-a-css3-border-fadeout/' rel='bookmark' title='How to create a CSS3 border fadeout'>How to create a CSS3 border fadeout</a></li>
<li><a href='http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/' rel='bookmark' title='Using the General Sibling Selector (CSS)'>Using the General Sibling Selector (CSS)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fapple%2Fhow-to-create-books-in-coda%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmhuntdesign.com%2Fblog%2Fapple%2Fhow-to-create-books-in-coda%2F&amp;source=mhuntdesign&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://mhuntdesign.com/blog/wp-content/uploads/2008/10/coda1.png"><img class="alignright size-full wp-image-95" title="Coda" src="http://mhuntdesign.com/blog/wp-content/uploads/2008/10/coda1.png" alt="" width="148" height="146" /></a>Coda allows you to add reference books under the &#8216;Books&#8217; tab.</p>
<p>More information on adding books to Coda:</p>
<ul>
<li><a href="http://www.drastudio.com/past/2008/11/29/adding-more-coda-books/">Adding more coda books tutorial</a></li>
<li><a href="http://groups.google.com/group/coda-users/browse_thread/thread/45e7bfe5cd05b8a9/b6c6348704067f23?lnk=gst&amp;q=psd&amp;pli=1">Google Groups: Coda Book Cover Template</a></li>
<li><a href="http://www.sitepoint.com/blogs/2008/11/28/adding-the-sitepoint-references-to-coda/">Adding Sitepoint Reference Books to Coda</a></li>
</ul>
<p>Related Post: <a title="How to Export or Save Sites in Coda" href="http://mhuntdesign.com/blog/apple-mac/how-to-exportsave-sites-in-coda/">How to export or save sites in coda</a></p>
<p>Related posts:<ol>
<li><a href='http://mhuntdesign.com/blog/apple/how-to-create-a-custom-apple-ipadiphone-home-screen-icon-for-your-website/' rel='bookmark' title='How to create a custom Apple iPad/iPhone Home screen icon for your Website'>How to create a custom Apple iPad/iPhone Home screen icon for your Website</a></li>
<li><a href='http://mhuntdesign.com/blog/css/how-to-create-a-css3-border-fadeout/' rel='bookmark' title='How to create a CSS3 border fadeout'>How to create a CSS3 border fadeout</a></li>
<li><a href='http://mhuntdesign.com/blog/css/using-the-general-sibling-selector-css/' rel='bookmark' title='Using the General Sibling Selector (CSS)'>Using the General Sibling Selector (CSS)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://mhuntdesign.com/blog/apple/how-to-create-books-in-coda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

