<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

    <channel>
    
    <title>JoshLockhart.com: Tutorials</title>
    <link>http://209.20.90.59:8082/index.php</link>
    <description />
    <dc:language>en</dc:language>
    <dc:creator>joshlockhart@gmail.com</dc:creator>
    <dc:rights>Copyright 2009</dc:rights>
    <dc:date>2009-08-26T02:11:51+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <media:copyright>Copyright 2009, Josh Lockhart</media:copyright><media:keywords>rapidweaver,html,css,php,sql</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Software How-To</media:category><itunes:owner><itunes:email>info@joshlockhart.com</itunes:email><itunes:name>Josh Lockhart</itunes:name></itunes:owner><itunes:author>Josh Lockhart</itunes:author><itunes:explicit>no</itunes:explicit><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><itunes:subtitle>Short RapidWeaver, HTML, CSS, and PHP tutorials</itunes:subtitle><itunes:summary>Short tutorials to help you learn RapidWeaver, HTML, CSS, PHP, and more.</itunes:summary><itunes:category text="Technology"><itunes:category text="Software How-To" /></itunes:category><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/joshlockhart_tutorials" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>An overview of my Envision RapidWeaver Theme</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/RGOqtKwYOaA/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/an-overview-of-my-envision-rapidweaver-theme/#When:02:11:51Z</guid>
      <description><![CDATA[<p>Watch a quick video tutorial to learn more about my new Envision RapidWeaver theme.
</p> <a href="http://media.joshlockhart.com/videos/envision/overview.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Envision</dc:subject>
      <dc:date>2009-08-26T02:11:51+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/UdWz3-RnGMY/overview.mov" fileSize="21665745" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Watch a quick video tutorial to learn more about my new Envision RapidWeaver theme. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Watch a quick video tutorial to learn more about my new Envision RapidWeaver theme. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/an-overview-of-my-envision-rapidweaver-theme/#When:02:11:51Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/UdWz3-RnGMY/overview.mov" length="21665745" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/envision/overview.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Convert a RapidWeaver photo album into a PrettyPhoto lightbox gallery</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/42HIhbVdlzA/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/convert-a-rapidweaver-photo-album-into-a-prettyphoto-lightbox-gallery/#When:20:17:01Z</guid>
      <description><![CDATA[<p><strong>Update:</strong> I have included a new optional script below that will also convert the photo album image captions into lightbox titles. Only use one of the Javascript snippets below. Do not use both.</p>
<p>Many of my Flex RapidWeaver theme customers have asked how to convert a RapidWeaver photo album page into a <a href="http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/">PrettyPhoto lightbox gallery</a>. It&#8217;s actually quite easy. This tutorial assumes you are using a traditional RapidWeaver photo album page. This tutorial also assumes you are using my <a href="http://www.joshlockhart.com/index.php/store/product/flex/">Flex RapidWeaver theme</a>. Here&#8217;s the Javascript code you will need:</p>
<h3>Without Titles</h3>
<pre class="brush:js">
jQuery(document).ready(function($){
	$('.thumbnail-frame').each(function(i,item){
		$('a:first',this).attr(
			'rel','prettyPhoto[gallery1]'
		).attr(
			'href',
			$('a:first',this).children('img')[0].src.replace(/\-thumb/,'-full')
		);
	});
	$('.thumbnail-frame a').prettyPhoto();
});
</pre>
<h3>With Titles</h3>
<pre class="brush:js">
jQuery(document).ready(function($){
	$('.thumbnail-frame').each(function(i,item){
		$('a:first',this).attr(
			'rel','prettyPhoto[gallery1]'
		).attr(
			'href',
			$('a:first',this).children('img')[0].src.replace(/\-thumb/,'-full')
		).attr(
			'title',
			$('p.thumbnail-caption:first',this).text()
		);
	});
	$('.thumbnail-frame a').prettyPhoto();
});
</pre>
<p>
And this is how you convert the photo album page into a PrettyPhoto lightbox gallery:
</p>
<ol>
<li>View your photo album page in RapidWeaver in Edit Mode</li>
<li>Open the Page Inspector -&gt; Header -&gt; Javascript tab</li>
<li>Paste the above Javascript code into the Javascript tab</li>
<li>Preview your Photo Album page</li>
</ol>
<p>That&#8217;s all there is to it! Post your questions and comments below.</p>]]></description>
      <dc:subject>Flex, Javascript</dc:subject>
      <dc:date>2009-08-19T20:17:01+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/convert-a-rapidweaver-photo-album-into-a-prettyphoto-lightbox-gallery/#When:20:17:01Z</feedburner:origLink></item>

    <item>
      <title>Flex: How to replace the default layout icons</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/q88mKb1Y2Mo/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-replace-the-default-layout-icons/#When:16:02:20Z</guid>
      <description><![CDATA[<p>Learn how to replace the default Flex layout icons with your own custom icons.
</p> <a href="http://media.joshlockhart.com/videos/flex/replace-icons.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex</dc:subject>
      <dc:date>2009-07-27T16:02:20+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/CMqwhxA5Hyw/replace-icons.mov" fileSize="11699811" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to replace the default Flex layout icons with your own custom icons. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to replace the default Flex layout icons with your own custom icons. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-replace-the-default-layout-icons/#When:16:02:20Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/CMqwhxA5Hyw/replace-icons.mov" length="11699811" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/replace-icons.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: How to use custom header background images</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/XxUM2TNtqnY/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-custom-header-background-images/#When:16:00:07Z</guid>
      <description><![CDATA[<p>Learn how to use custom header background images in Flex. See how to install images and customize the image&#8217;s position and repeat directions.
</p> <a href="http://media.joshlockhart.com/videos/flex/images.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex</dc:subject>
      <dc:date>2009-07-27T16:00:07+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/yEioHr3mxWo/images.mov" fileSize="28588259" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to use custom header background images in Flex. See how to install images and customize the image&amp;#8217;s position and repeat directions. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to use custom header background images in Flex. See how to install images and customize the image&amp;#8217;s position and repeat directions. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-custom-header-background-images/#When:16:00:07Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/yEioHr3mxWo/images.mov" length="28588259" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/images.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: How to use the built-in PrettyPhoto lightbox on a RapidWeaver Styled Text page</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/bQXwYhxvwbA/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-prettyphoto-lightbox-styed-text-page/#When:15:56:35Z</guid>
      <description><![CDATA[<p>Learn how to use the built-in PrettyPhoto lightbox in Flex on a Styled Text page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos.
</p> <a href="http://media.joshlockhart.com/videos/flex/prettyPhoto2.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex, Javascript</dc:subject>
      <dc:date>2009-07-27T15:56:35+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/f6e2g5H160Y/prettyPhoto2.mov" fileSize="17702038" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to use the built-in PrettyPhoto lightbox in Flex on a Styled Text page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to use the built-in PrettyPhoto lightbox in Flex on a Styled Text page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-prettyphoto-lightbox-styed-text-page/#When:15:56:35Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/f6e2g5H160Y/prettyPhoto2.mov" length="17702038" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/prettyPhoto2.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: How to use the built-in PrettyPhoto lightbox on a RapidWeaver HTML page</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/J0AoXMtz8Jo/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-prettyphoto-lightbox-html-page/#When:15:53:00Z</guid>
      <description><![CDATA[<p>Learn how to use the built-in PrettyPhoto lightbox in Flex on an HTML page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos.
</p> <a href="http://media.joshlockhart.com/videos/flex/prettyphoto.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex, Javascript</dc:subject>
      <dc:date>2009-07-27T15:53:00+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/7jFjBOGDK9A/prettyphoto.mov" fileSize="10712986" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to use the built-in PrettyPhoto lightbox in Flex on an HTML page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to use the built-in PrettyPhoto lightbox in Flex on an HTML page to quickly create professional lightbox galleries for images, SWFs, Quicktime videos, and YouTube videos. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-prettyphoto-lightbox-html-page/#When:15:53:00Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/7jFjBOGDK9A/prettyphoto.mov" length="10712986" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/prettyphoto.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: How to use the built-in jQuery Javascript library</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/4LmV1L4BU8E/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-jquery-javascript-library/#When:15:45:15Z</guid>
      <description><![CDATA[<p>Learn how to use the built-in jQuery 1.3.2 Javascript library in Flex.
</p> <a href="http://media.joshlockhart.com/videos/flex/jquery.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex, Javascript</dc:subject>
      <dc:date>2009-07-27T15:45:15+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/QjhV0Fb2pHo/jquery.mov" fileSize="18126209" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to use the built-in jQuery 1.3.2 Javascript library in Flex. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to use the built-in jQuery 1.3.2 Javascript library in Flex. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-jquery-javascript-library/#When:15:45:15Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/QjhV0Fb2pHo/jquery.mov" length="18126209" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/jquery.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: How to use the built-in RapidSearch form</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/6lCLvfI7Rc0/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-rapidsearch-form/#When:15:38:02Z</guid>
      <description><![CDATA[<p>Learn how to setup and use the integrated RapidSearch form in Flex.
</p> <a href="http://media.joshlockhart.com/videos/flex/rapidsearch.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex, RapidSearch</dc:subject>
      <dc:date>2009-07-27T15:38:02+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/CuTBsaRwz7c/rapidsearch.mov" fileSize="15661053" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> Learn how to setup and use the integrated RapidSearch form in Flex. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> Learn how to setup and use the integrated RapidSearch form in Flex. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-how-to-use-the-built-in-rapidsearch-form/#When:15:38:02Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/CuTBsaRwz7c/rapidsearch.mov" length="15661053" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/rapidsearch.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>Flex: Overview</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/O-_oqq-yiv8/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/flex-overview/#When:15:28:08Z</guid>
      <description><![CDATA[<p>A brief introduction to and overview of Flex, my new RapidWeaver theme.
</p> <a href="http://media.joshlockhart.com/videos/flex/overview.mov" title="Download Tutorial">Download Tutorial</a>]]></description>
      <dc:subject>Flex</dc:subject>
      <dc:date>2009-07-27T15:28:08+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><media:content url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/a7i1H0VVKuw/overview.mov" fileSize="24949745" type="video/quicktime" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> A brief introduction to and overview of Flex, my new RapidWeaver theme. Download Tutorial</itunes:subtitle><itunes:author>Josh Lockhart</itunes:author><itunes:summary> A brief introduction to and overview of Flex, my new RapidWeaver theme. Download Tutorial</itunes:summary><itunes:keywords>rapidweaver,html,css,php,sql</itunes:keywords><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/flex-overview/#When:15:28:08Z</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/joshlockhart_tutorials/~5/a7i1H0VVKuw/overview.mov" length="24949745" type="video/quicktime" /><feedburner:origEnclosureLink>http://media.joshlockhart.com/videos/flex/overview.mov</feedburner:origEnclosureLink></item>

    <item>
      <title>How to customize a RapidWeaver theme the right way</title>
      <link>http://feedproxy.google.com/~r/joshlockhart_tutorials/~3/1gxiIZGUYa4/</link>
      <guid isPermaLink="false">http://www.joshlockhart.com/index.php/tutorials/article/how-to-customize-a-rapidweaver-theme-the-right-way/#When:21:05:53Z</guid>
      <description><![CDATA[<h3>Overview</h3>
<p>
	Not everyone is satisfied with a RapidWeaver theme's default CSS styles. Some users provide their own CSS styles to customize
	a RapidWeaver theme to their liking. Unfortunately, upgrading a customized theme to a new version can be painful, especially if a lot of
	changes were made by the user. Here is my recommended way to customize a RapidWeaver theme that makes theme upgrades a breeze.
</p>

<h3>Isolate your changes</h3>
<p>
	It is important to isolate your own CSS modifications into a separate style sheet. Do not change the RapidWeaver theme's default style sheet.
	Isolating your own custom CSS styles makes future theme upgrades quick and easy. For this tutorial, I will demonstrate how to 
	customize my <a href="http://www.joshlockhart.com/index.php/store/product/silk/" title="Silk RapidWeaver theme">Silk RapidWeaver theme</a>.
</p>

<h4>Step 1: Create custom.css</h4>
<p>
	First, open a test website file in RapidWeaver. Open the Theme Library panel (View > Show Themes). Right-click on the Silk theme and 
	select "Reveal Theme Contents in Finder". The resultant Finder window should look like the following screenshot.
</p>
<p><img src="http://www.joshlockhart.com/images/uploads/finder-before.jpg" alt="Finder screenshot"/></p>
<p>
	Next, create a new file in "/Contents/" called <code>custom.css</code>. The Finder window should now look like the following screenshot.
</p>
<p><img src="http://www.joshlockhart.com/images/uploads/finder-after.jpg" alt="Finder screenshot showing custom.css file"/></p>

<h4>Step 2: Update Theme.plist</h4>
<p>
	Next, we need to tell RapidWeaver to include our <code>custom.css</code> file when publishing or exporting your website. To do this, open 
	<code>Theme.plist</code> in a text editor. Locate the "Files to Copy" array. It looks like this:
</p>
<pre class="brush:xml">
&lt;!-- Files to copy --&gt;
&lt;key&gt;RWCopyFiles&lt;/key&gt;
&lt;array&gt;
	&lt;string&gt;css&lt;/string&gt;
	&lt;string&gt;images&lt;/string&gt;
	&lt;string&gt;styles.css&lt;/string&gt;
	&lt;string&gt;print.css&lt;/string&gt;
	&lt;string&gt;colourtag.css&lt;/string&gt;
	&lt;string&gt;jquery-1.3.2.min.js&lt;/string&gt;
	&lt;string&gt;setup.js&lt;/string&gt;
	&lt;string&gt;javascript.js&lt;/string&gt;
	&lt;string&gt;rounded.js&lt;/string&gt;
	&lt;string&gt;transparency.js&lt;/string&gt;
	&lt;string&gt;ie6.css&lt;/string&gt;
	&lt;string&gt;ie7.css&lt;/string&gt;
&lt;/array&gt;
</pre>
<p>
	Insert a new array item for the <code>custom.css</code> file. The new array will look like this:
</p>
<pre class="brush:xml">
&lt;!-- Files to copy --&gt;
&lt;key&gt;RWCopyFiles&lt;/key&gt;
&lt;array&gt;
	&lt;string&gt;css&lt;/string&gt;
	&lt;string&gt;images&lt;/string&gt;
	&lt;string&gt;styles.css&lt;/string&gt;
	&lt;string&gt;print.css&lt;/string&gt;
	&lt;string&gt;colourtag.css&lt;/string&gt;
	&lt;string&gt;jquery-1.3.2.min.js&lt;/string&gt;
	&lt;string&gt;setup.js&lt;/string&gt;
	&lt;string&gt;javascript.js&lt;/string&gt;
	&lt;string&gt;rounded.js&lt;/string&gt;
	&lt;string&gt;transparency.js&lt;/string&gt;
	&lt;string&gt;ie6.css&lt;/string&gt;
	&lt;string&gt;ie7.css&lt;/string&gt;
	&lt;string&gt;custom.css&lt;/string&gt;
&lt;/array&gt;
</pre>

<h4>Step 3: Update index.html</h4>
<p>
	Insert a link to the <code>custom.css</code> file in the theme's <code>index.html</code> template file. This update ensures any CSS in <code>custom.css</code>
	is applied to your website. In the Finder window (see above screenshot), open
	<code>index.html</code> in a text editor. We insert a link to <code>custom.css</code> in the document's <code>head</code>.
</p>
<pre class="brush:html">
&lt;head&gt;
	%header%
	&lt;title&gt;%title%&lt;/title&gt;

	&lt;link rel=&quot;stylesheet&quot; href=&quot;%pathto(styles.css)%&quot; type=&quot;text/css&quot; media=&quot;all&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;%pathto(colourtag.css)%&quot; type=&quot;text/css&quot; media=&quot;all&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;%pathto(print.css)%&quot; type=&quot;text/css&quot; media=&quot;print&quot; /&gt;
	
	&lt;!-- Insert custom.css link here --&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;%pathto(custom.css)%&quot; type=&quot;text/css&quot; media=&quot;all&quot; /&gt;
	
	%style_variations%
	%user_styles%

	&lt;!-- Subsequent markup omitted for brevity --&gt;

&lt;/head&gt;
</pre>
<p>
	Be sure you add the <code>custom.css</code> link <strong>after</strong> the other links but before the <code>%style_variations%</code> text. Also be sure
	you surround <code>custom.css</code> with the <code>%pathto()%</code> syntax exactly as shown above.
</p>

<h3>The Result</h3>
<p>
	You're done! Now you can safely add your own custom CSS into the <code>custom.css</code> file. When you upgrade the Silk theme to a new version,
	you only need to copy your <code>custom.css</code> file into the upgraded theme file and repeat steps 2 and 3 above.
</p>]]></description>
      <dc:subject>HTML and CSS, Silk</dc:subject>
      <dc:date>2009-07-26T21:05:53+00:00</dc:date>
    <author>info@joshlockhart.com (Josh Lockhart)</author><feedburner:origLink>http://www.joshlockhart.com/index.php/tutorials/article/how-to-customize-a-rapidweaver-theme-the-right-way/#When:21:05:53Z</feedburner:origLink></item>

    
    <copyright>Copyright 2009, Josh Lockhart</copyright><media:credit role="author">Josh Lockhart</media:credit><media:rating>nonadult</media:rating><media:description type="plain">Short RapidWeaver, HTML, CSS, and PHP tutorials</media:description></channel>
</rss>
