<?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>NerdySetups.com</title>
	<atom:link href="http://nerdysetups.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nerdysetups.com</link>
	<description></description>
	<lastBuildDate>Wed, 11 Nov 2009 05:15:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Multiple Stylesheets with WordPress</title>
		<link>http://nerdysetups.com/2009/11/11/using-multiple-stylesheets-with-wordpress/</link>
		<comments>http://nerdysetups.com/2009/11/11/using-multiple-stylesheets-with-wordpress/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 05:15:12 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nerdysetups.com/?p=344</guid>
		<description><![CDATA[The other day I ran into a problem.  I was designing a WP theme that had a widgetized sidebar.  The h3 in the page widget showed correctly in Firefox, but not Internet Explorer.  I spent a ton of time on the theme so I wasn&#8217;t wanting to search the net to find [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I ran into a problem.  I was designing a WP theme that had a widgetized sidebar.  The h3 in the page widget showed correctly in Firefox, but not Internet Explorer.  I spent a ton of time on the theme so I wasn&#8217;t wanting to search the net to find the css fix that displayed correctly in both Firefox and IE so I made a stylesheet for Firefox and a stylesheet for IE.  This is how I did it.  In the header just below the header hook, I placed the following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_head<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
 <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$browser</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>  
  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strstr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$browser</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;IE&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>  
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/ie-style.css&quot;
 type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;  
 <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>  
 &lt;link rel=&quot;stylesheet&quot; href=<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> 
type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;  
   <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Line 3 returns the user&#8217;s browser information.  Lines 4 and 5 tells the browser if you are IE, then use the IE style sheet.  Normally to retrieve the style sheet you would just put the following code in your header:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p> ,but since I needed to use multiple style sheets.  I used</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/ie-style.css</pre></div></div>

<p> to locate the first style sheet.  This code tells the browser that the IE stylesheet is located in the folder where the WP theme resides.  Line 7 and 8 then tells the browser if you are Firefox, use the default style sheet.  </p>
<p>I figured out how to do this for WordPress after reading <a href="http://danieldumas.com/separating-css-style-sheet-for-different-browsers-using-php">this post</a>.  I then just thought about how to apply it to WordPress and the above solution is what I came up with.  I hope this helps someone.  And if you have any better workarounds than this, please feel free to share.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/11/11/using-multiple-stylesheets-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Good Reasons Your Small Business Needs a Website</title>
		<link>http://nerdysetups.com/2009/09/14/10-good-reasons-your-small-business-needs-a-website/</link>
		<comments>http://nerdysetups.com/2009/09/14/10-good-reasons-your-small-business-needs-a-website/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 04:21:20 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nerdysetups.com/?p=314</guid>
		<description><![CDATA[
Many of your potential customers will search the net to find the service or product you offer before they will look in the Yellow Pages.
A website gives you a 24/7 presence.  Even though you may not accept phone calls 24 hours a day, customers can research your business and leave emails any time day or [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Many of your potential customers will search the net to find the service or product you offer before they will look in the Yellow Pages.</li>
<li>A website gives you a 24/7 presence.  Even though you may not accept phone calls 24 hours a day, customers can research your business and leave emails any time day or night.</li>
<li>The cost of running a website is very minimal.  One website that I previously owned cost $10 a month to run and earned $32,000 a year.  That&#8217;s a nice profit margin.  <img src='http://nerdysetups.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span id="more-314"></span></li>
<li>A well designed website will build customer confidence.  Recently, my wife and I needed some work done on our roof.  We picked the roofing company that had the well designed website.  I compare websites to gas stations.  You will pass up 5 gas stations just to go to the clean, nicely lit station.</li>
<li>A website can turn a local business into an international business.</li>
<li>Informed people become customers.  Your site can help inform your customers about your products and services.</li>
<li>Printed material gets outdated and has to be thrown away.  Your website can be easily updated with new content.</li>
<li> The internet provides many <strong>FREE</strong> advertising venues.</li>
<li>Let your customers know that you are cutting edge and not stuck in the stone ages.</li>
<li>Many small businesses do not have websites.  Beat out the competition with a nicely designed site.  Get your <a href="http://nerdysetups.com/request-a-quote/">free quote </a>today!</li>
</ol>
<p style="text-align: center;"><a href="http://nerdysetups.com/request-a-quote/"><img class="size-full wp-image-315 aligncenter" title="freequote-125" src="http://nerdysetups.com/wp-content/uploads/2009/09/freequote-125.jpg" alt="freequote-125" width="125" height="125" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/09/14/10-good-reasons-your-small-business-needs-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webpuffs Free Wordpress Theme</title>
		<link>http://nerdysetups.com/2009/08/01/webpuffs-free-wordpress-theme/</link>
		<comments>http://nerdysetups.com/2009/08/01/webpuffs-free-wordpress-theme/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 19:55:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nerdysetups.com/?p=227</guid>
		<description><![CDATA[Webpuffs is a clean, widgetized, and Adsnese ready web 2.0 theme.  Unlike most free themes, this theme uses an image as a logo.  If you need a logo created that looks like the current logo, let me know and I&#8217;ll do it for $15.  If you have any trouble with the theme, or have any [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nerdysetups.com/wp-content/uploads/2009/05/webpuffs.jpg"><img class="alignleft size-full wp-image-224" title="webpuffs" src="http://nerdysetups.com/wp-content/uploads/2009/05/webpuffs.jpg" alt="webpuffs" width="300" height="195" /></a>Webpuffs is a clean, widgetized, and Adsnese ready web 2.0 theme.  Unlike most free themes, this theme uses an image as a logo.  If you need a logo created that looks like the current logo, let me know and I&#8217;ll do it for $15.  If you have any trouble with the theme, or have any questions please leave a comment on this post.  I plan on using this post for documentation.  As the questions come, I will add the info.  I&#8217;d add all the documentation now, but I&#8217;m limited to time.</p>
<p>Oh yeah, Webpuffs theme is also valid XHTML and CSS.  Thanks, and enjoy the theme.</p>
<p><strong><a href="http://webpuffs.com" target="_blank">View Demo </a>| <a href="http://nerdysetups.com/wp-content/uploads/2009/08/webpuffs.zip">Download Here</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/08/01/webpuffs-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Move Your Blogspot Blog to Wordpress</title>
		<link>http://nerdysetups.com/2009/05/26/how-to-move-your-blogspot-blog-to-wordpress/</link>
		<comments>http://nerdysetups.com/2009/05/26/how-to-move-your-blogspot-blog-to-wordpress/#comments</comments>
		<pubDate>Tue, 26 May 2009 19:17:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nerdysetups.com/2009/05/26/how-to-move-your-blogspot-blog-to-wordpress/</guid>
		<description><![CDATA[
I just opened up a Blogspot account.  This post was written on my blogspot blog.  I just opened up this blog to show others how to import a Blogspt blog into Wordpress.  I will probably never use this Blogspot blog again.  Here&#8217;s how to import a Blogspot blog.

Login into your Wordpress [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://2.bp.blogspot.com/_GMWHxSfXuzY/ShxDjfG6olI/AAAAAAAAAAU/6qR4QS2x0fs/s1600-h/hello.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5340217535079555666" style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 143px;" src="http://2.bp.blogspot.com/_GMWHxSfXuzY/ShxDjfG6olI/AAAAAAAAAAU/6qR4QS2x0fs/s200/hello.jpg" border="0" alt="" /></a><br />
I just opened up a Blogspot account.  This post was written on my blogspot blog.  I just opened up this blog to show others how to import a Blogspt blog into Wordpress.  I will probably never use this Blogspot blog again.  Here&#8217;s how to import a Blogspot blog.</p>
<ol>
<li>Login into your Wordpress admin.</li>
<li>Under Tools click Import.</li>
<li> Click  Blogger.</li>
<li>And then follow the directions.</li>
</ol>
<p>It will ask you if you want to allow your Wordpress blog access to your blogger site.  Allow it and then continue on.  It&#8217;s that simple.</p>
<p>You can see the post at my Blogspot blog here:</p>
<p><a href="http://nerdysetups.blogspot.com/2009/05/how-to-move-your-blogspot-blog-to.html">http://nerdysetups.blogspot.com/2009/05/how-to-move-your-blogspot-blog-to.html</a></p>
<p>If you have problems doing this yourself, I can do it for you for $30.  <a href="http://nerdysetups.com/wordpress-services/">Fill out the form here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/05/26/how-to-move-your-blogspot-blog-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove Footer Encryption on Wordpress Themes</title>
		<link>http://nerdysetups.com/2009/05/10/how-to-remove-footer-encryption-on-wordpress-themes/</link>
		<comments>http://nerdysetups.com/2009/05/10/how-to-remove-footer-encryption-on-wordpress-themes/#comments</comments>
		<pubDate>Sun, 10 May 2009 04:24:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nerdysetups.com/?p=160</guid>
		<description><![CDATA[First off, the pupose of this post is so you can edit the encrypted footer for design purpose and not to erase the sponsor links.  I never tried to to decrypt a footer before, but I told someone that I would fix the right nav bar on their theme and it just so happened that [...]]]></description>
			<content:encoded><![CDATA[<p>First off, the pupose of this post is so you can edit the encrypted footer for design purpose and not to erase the sponsor links.  I never tried to to decrypt a footer before, but I told someone that I would fix the right nav bar on their theme and it just so happened that the code for the right nav bar was encrypted into the footer.  The theme they were using is called Sleek Car.  You can download it <a href="http://carthemes.net/download/sleek-car.zip" target="_blank">here</a> if you like it.  Over all the theme was coded very well.  The style sheet was labeled and layed out nicely, but the right nav bar being encrypted would probably cause a lot of people to give up on the theme and stop using it.  This is how I decrypted it and fixed the right nav bar.<span id="more-160"></span></p>
<p><strong>Step 1</strong></p>
<p>I created a new footer file.  I added the following code:</p>
<p>&lt;?php wp_footer(); ?&gt;</p>
<p><strong>Step 2</strong></p>
<p>I took a look at the index file to see where the following code started:</p>
<p>&lt;?php get_footer(); ?&gt;</p>
<p><strong>Step 3</strong></p>
<p>I clicked view source.  I copied all the code from &lt;/html&gt; to where the &lt;?php get_footer(); ?&gt; code would  start.</p>
<p><strong>Step 4</strong></p>
<p>I pasted this code into my new footer document below this code: &lt;?php wp_footer(); ?&gt;</p>
<p><strong>Step 5</strong></p>
<p>Since the view source only shows the outputed HTML and none of the PHP code I had to make a few minor changes.  For example, where it called for images it had something like:</p>
<p>&lt;img src=&#8221;http://mydomain.com/themes/images/ad.jpg&#8221;&gt; I had to change to:</p>
<p>&lt;img src=&#8221;&lt;?php bloginfo(&#8217;template_directory&#8217;); ?&gt;/images/ad.jpg&#8221; &gt;</p>
<p>That was pretty much it.  You can do the same to pretty much any other theme.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/05/10/how-to-remove-footer-encryption-on-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to NerdySetups.com</title>
		<link>http://nerdysetups.com/2009/05/02/home/</link>
		<comments>http://nerdysetups.com/2009/05/02/home/#comments</comments>
		<pubDate>Sat, 02 May 2009 03:05:52 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webpuffs.com/nerdysite/?p=3</guid>
		<description><![CDATA[I&#8217;ve been messing around with Wordpress, various shopping carts and other scripts for years.  I really enjoy helping people and I&#8217;m in need of some more income so I decided to take the knowledge that I have and apply it to offering these services.  I hope to also be able to add a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been messing around with Wordpress, various shopping carts and other scripts for years.  I really enjoy helping people and I&#8217;m in need of some more income so I decided to take the knowledge that I have and apply it to offering these services.  I hope to also be able to add a few informative blog posts here and there.  <img src='http://nerdysetups.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://nerdysetups.com/2009/05/02/home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
