<?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>ToddSantoro.com Designs&#187; Columbus, Ohio website design ToddSantoro.com Designs</title>
	<atom:link href="http://toddsantoro.com/category/web-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://toddsantoro.com</link>
	<description>Columbus, Ohio Web Site Design</description>
	<lastBuildDate>Mon, 21 Jun 2010 03:30:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to set up a wordpress blog in 5 simple steps</title>
		<link>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/</link>
		<comments>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 23:44:57 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://toddsantoro.com/wordpress/?p=575</guid>
		<description><![CDATA[I just got off the phone with a friend who really does not know much about web design...]]></description>
			<content:encoded><![CDATA[<h3>Setting up a WordPress site in no time flat</h3>
<p><img class="alignleft size-medium wp-image-906" title="wordpress-logo-300x282" src="http://toddsantoro.com/wp-content/uploads/2009/12/wordpress-logo-300x282-127x120.png" alt="wordpress logo grunge" width="127" height="120" />I just got off the phone with a friend who really does not know much about web design and we got him set up with a WordPress blog in 5 simple steps. After talking with him I decided to write a tutorial on how to set up a WordPress website. This tutorial will take about 15 minutes if you don&#8217;t count file transfer time (FTP).</p>
<h3>What you will need:</h3>
<ul>
<li>A FTP program like <a href="http://filezilla-project.org/" rel="nofollow" >FileZilla</a> (I use Dreamweaver and FileZilla)</li>
<li>A web hosting company (Obviously&#8230; I use <a href="http://mediatemple.net" rel="nofollow" >Media Temple</a>)</li>
<li>A Text editor (I use Dreamweaver but you can use anything)</li>
</ul>
<h3>What this Tutorial will accomplish:</h3>
<ul>
<li>You will have a basic WordPress website running</li>
</ul>
<h3>Let&#8217;s get started&#8230;</h3>
<p><strong>Step #1.</strong> Download and unzip the latest version of <a href="http://wordpress.org/download/" rel="nofollow" >WordPress</a> (This tutorial uses v. 2.9) into a local folder on your computer (remember where you unzipped it to)</p>
<p><strong>Step #2.</strong> Create a database on your server and take note of those settings. Most hosting companies provide help documents on how to do this. Its should be really simple.</p>
<p><strong>Step #3.</strong> Open up this file: <strong>wp-config-sample.php</strong> and SAVE AS <strong>wp-config.php </strong>right off the bat. Then edit the lines of code that talk about your database. Remember those settings I said to keep handy. You will need them here.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//  MySQL settings - You can get this info from your web host  //</span>
<span style="color: #666666; font-style: italic;">// The name of the database for WordPress //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_NAME'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'put_your_database_name_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL database username //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_USER'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'user_name_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL database password //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_PASSWORD'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'your_password_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL hostname 99% chance you will not have to change this value.  Some hosting providers like mine require something different.  This is something that anyone at the hosting company will know.//</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_HOST'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'localhost'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Down a little further you will see the Unique Keys.  FILL THESE WITH UNIQUE CHARACTERS LIKE:<br />
<strong>86dfg79835g6%^$R@!^7^Hn76h&amp;*!@Yhnd*@^#8yem </strong>They should all be different from each other and help with the security of your blog. Please do not use the ones provided in these examples and make sure to keep the single quotes around each value.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'AUTH_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">':dr+%/5V4sAUG-gg%aS*v;&amp;amp;xGhd%{YKC^Z7KKGh j&amp;gt;k[.Nf$y7iGKdJ3c*[Kr5Bg'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SECURE_AUTH_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'TufWOuA _.t&amp;gt;#+hA?^|3RfGTm&amp;gt;@*+S=8\&quot;\'+\&quot;}]&amp;lt;m#+}V)p:Qi?jXLq,&amp;lt;h\\`39m_('</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'LOGGED_IN_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'S~AACm4h1;T^\&quot;qW3_8Zv!Ji=y|)~5i63JI |Al[(&amp;lt;YS&amp;lt;2V^$T])=8Xh2a:b:}U_E'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'NONCE_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'k1+EOc-&amp;amp;w?hG8j84&amp;gt;6L9v\&quot;6C89NH?ui{*3\\(t09mumL/fFP_!K$JCEkLuy ={x{0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>For more security I like to change the table prefix from <strong>wp_ </strong>to something else.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// You can have multiple installations in one database if you give each a unique table prefix</span>
<span style="color: #000088;">$table_prefix</span>  <span style="color: #339933;">=</span> <span style="color: #0000ff;">'r235_'</span><span style="color: #339933;">;</span>   <span style="color: #666666; font-style: italic;">// Only numbers, letters, and underscores please!</span></pre></div></div>

<p><strong>Step #4. </strong>Fire up your FTP program and upload all of the files including the 3 directories to your web server.  This is where a lot of your time will be spent.</p>
<p><strong>Step #5.</strong> Open up your favorite web browser and type your site&#8217;s address in the address bar and add <strong>/wp-admin/install.php. </strong>i.e. www.exampleurl.com/wp-admin/install.php or www.exampleulr.com/blog/wp-admin/install.php if you place WordPress in another directory like <strong>blog. </strong>Fill in the simple info WordPress asks for and your good to go!<strong><br />
</strong></p>
<h3>That&#8217;s it!  You have now set up your first WordPress site.</h3>
]]></content:encoded>
			<wfw:commentRss>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sIFR is how we made our headlines look so smashing</title>
		<link>http://toddsantoro.com/sifr-is-how-we-made-our-headlines-look-so-smashing/</link>
		<comments>http://toddsantoro.com/sifr-is-how-we-made-our-headlines-look-so-smashing/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:20:56 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<category><![CDATA[sIFR]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://toddsantoro.com/wordpress/?p=630</guid>
		<description><![CDATA[We accomplished this with a small piece of opensource JavaScript and Adobe Flash software called sIFR...]]></description>
			<content:encoded><![CDATA[<h3>Like the fonts our headlines are in?</h3>
<p style="text-align: center;"><img class="size-full wp-image-808 alignnone" title="headlines_using_sifr" src="http://toddsantoro.com/wp-content/uploads/2009/12/headlines_using_sifr.jpg" alt="headlines_using_sifr" width="506" height="146" /></p>
<p>We accomplished this with a small piece of <a href="http://www.mikeindustries.com/sifr" rel="nofollow" >opensource JavaScript and Adobe Flash software called sIFR</a> or <a href="http://en.wikipedia.org/wiki/Scalable_Inman_Flash_Replacement" rel="nofollow" >Scalable Inman Flash Replacement</a>. Come on, I&#8217;ll show you how to do this in 15 minutes or less.</p>
<h3><em><span style="font-style: normal;">This is a quick start tutorial and will accomplish two things:</span></em></h3>
<ul>
<li>Replacement of your site&#8217;s &lt;h1&gt; tags, if you have any</li>
<li>Replacement of a CSS class named &#8220;replace-me&#8221; which we will create on a page</li>
</ul>
<h3>Things you will need for this tutorial:</h3>
<ul>
<li>A simple text editor (I use Dreamweaver CS3 &#8211; you can use anything)</li>
<li>Adobe Flash (I use Flash CS3 Professional)</li>
<li>A font you like (I like to look on <a href="http://dafont.com" rel="nofollow" >daFont.com</a> &#8211; they are free:)</li>
</ul>
<p><span id="more-630"></span></p>
<h3>Lets get started</h3>
<p><strong>Step #1: </strong><a href="http://www.mikeindustries.com/sifr" rel="nofollow" >Download and unzip the latest version of the sIFR project here</a>. This tutorial uses <a href="http://www.mikeindustries.com/blog/files/sifr/2.0/sIFR-2.0.7.zip" rel="nofollow" >sIFR-2.0.7</a><br />
<strong> Step #2:</strong> Fire up Adobe Flash and open <strong>sifr.fla </strong>(it is in the .zip file you just downloaded in step #1) If your version of Flash will not open up the sifr.fla file (Usually cs4 users) then you can <a href="http://toddsantoro.com/wp-content/uploads/2009/12/sifr_cs3.zip">download a compatible version here</a><br />
<strong> Step #3:</strong> Double click on the stage.<br />
<img class="size-large wp-image-819 alignnone" title="sifr_step_3" src="http://toddsantoro.com/wp-content/uploads/2009/12/sifr_step_3-480x327.jpg" alt="sifr_step_3" width="480" height="327" /></p>
<p><strong>Step #4:</strong> Select the Dynamic Text box on the stage.<br />
<img class="alignnone size-large wp-image-820" title="sifr_step_3b" src="http://toddsantoro.com/wp-content/uploads/2009/12/sifr_step_3b-480x327.jpg" alt="sifr_step_3b" width="480" height="327" /></p>
<p><strong>Step #5:</strong> Change the font to one you like. Don&#8217;t worry about the font size as sIFR takes care of that for you.  The font color will be defined later on in the implementation process.<br />
<img class="alignnone size-large wp-image-818" title="sifr_step_3c" src="http://toddsantoro.com/wp-content/uploads/2009/12/sifr_step_3c-480x327.jpg" alt="sifr_step_3c" width="480" height="327" /></p>
<p><strong>Step #6:</strong> We are now done with Flash, so save the file as the name of the font you used and publish it (eg: swatch_it.fla).  This helps when you have multiple fonts on a page.</p>
<p><strong>Step #7:</strong> Open up your text editor and follow along.  It is pretty easy to just cut and paste:)</p>
<p><strong>Step #8:</strong> Open <strong>customize_me.as </strong>and change line 14 to your reflect your domain name.  You just need your domain name here.  It does not matter where you will be using sIFR on your site. Make sure you have one with www. and one without. Then save and close it.</p>
<p>example:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">allowedDomains <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #990000;">Array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;*&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;www.toddsantoro.com&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;toddsantoro.com&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><strong>Step #9:</strong> Open up your site&#8217;s <strong>stylesheet</strong> (Hint: its a .css file)</p>
<p><strong>Step #10:</strong> Add these lines to your sites stylesheet:</p>
<p>example:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.replace-me</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span> !important<span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
h1 <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span> !important<span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>OR</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.replace-me</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">75px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">250px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
h1 <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span> !important<span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">22px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>The class <strong>replace-me</strong> will trigger sIFR to replace the text with a Flash movie that has your special font.  For those people that do not have flash installed, they will see normal text.  By adding attributes to the class you can achieve different results, be creative:) As for the &lt;h1&gt; tag&#8230; everywhere a &lt;h1&gt; tag is on your site, sIFR will replace it with a Flash movie.</p>
<p><strong>Step #11:</strong> Now we bring everything together. Open up your header.php page if you have one.  If not; open up the page you want to have sIFR replace your text on. I usually work with WordPress and it has a header.php file that is included on every page of my site.</p>
<p>Add these lines to the &lt;head&gt;&lt;/head&gt; of your page:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;sIFR-2.0.7/sifr.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;sIFR-2.0.7/sifr-addons.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p><strong>Step #12:</strong> Add this line somewhere in the &lt;body&gt;&lt;/body&gt; of your page:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;replace-me&quot;</span><span style="color: #339933;">&gt;</span>This is the text I wanted to replace<span style="color: #339933;">.</span>  Yippie<span style="color: #339933;">!&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p><strong>Step #13:</strong> Open up <strong>footer.php</strong> if you have one or continue working with the file you were just working with in <strong>Step #12. </strong>Add these lines just before the ending <strong>&lt;/body&gt;</strong> tag:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/JavaScript&quot;</span><span style="color: #339933;">&gt;</span>if<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> sIFR <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;function&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
        sIFR.<span style="color: #660066;">replaceElement</span><span style="color: #009900;">&#40;</span>named<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>sSelector<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;h1&quot;</span><span style="color: #339933;">,</span> sFlashSrc<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;sIFR-2.0.7/swatch_it.swf&quot;</span><span style="color: #339933;">,</span> sColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sLinkColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sHoverColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sWmode<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;transparent&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/JavaScript&quot;</span><span style="color: #339933;">&gt;</span>if<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> sIFR <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;function&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
        sIFR.<span style="color: #660066;">replaceElement</span><span style="color: #009900;">&#40;</span>named<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>sSelector<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#replace-me&quot;</span><span style="color: #339933;">,</span> sFlashSrc<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;sIFR-2.0.7/swatch_it.swf&quot;</span><span style="color: #339933;">,</span> sColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sLinkColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sHoverColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sWmode<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;transparent&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Be sure to set your font and link colors in the code above.  Also make sure your paths to stuff are correct. You can also combine these like this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/JavaScript&quot;</span><span style="color: #339933;">&gt;</span>if<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> sIFR <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;function&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
        sIFR.<span style="color: #660066;">replaceElement</span><span style="color: #009900;">&#40;</span>named<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>sSelector<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;h1,#replace-me&quot;</span><span style="color: #339933;">,</span> sFlashSrc<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;sIFR-2.0.7/swatch_it.swf&quot;</span><span style="color: #339933;">,</span> sColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sLinkColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sHoverColor<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;#4E4C00&quot;</span><span style="color: #339933;">,</span> sWmode<span style="color: #339933;">:</span><span style="color: #3366CC;">&quot;transparent&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Notice that I simply added a comma to separate the two CSS elements I wanted to replace. This method would also render the same font colors on both &lt;h1&gt; tags and the replace-me class.</p>
<p><strong>Step #14: </strong>You are done!  Upload all of your files to your server and check out your work.  If you have problems&#8230; I would first make sure all of the paths to the sIFR stuff are correct and that you have uploaded all of the sIFR files.</p>
<p>I will try to help troubleshoot if you post your comments below.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://toddsantoro.com/sifr-is-how-we-made-our-headlines-look-so-smashing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
