<?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>Education Web Design &#187; How To&#8217;s</title>
	<atom:link href="http://educationwebdesign.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://educationwebdesign.com</link>
	<description>Top Resources for Learning Web Design</description>
	<lastBuildDate>Fri, 13 Nov 2009 00:20:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Install WordPress</title>
		<link>http://educationwebdesign.com/how-to-install-wordpress/</link>
		<comments>http://educationwebdesign.com/how-to-install-wordpress/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 00:20:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=34</guid>
		<description><![CDATA[Many people want to get started blogging and install WordPress on their own domain. Most people get scared at the thought of installing something to a server if they have never done this before, but it is really quite simple. In this post titled &#8220;How to Install WordPress&#8221; you will learn how to start from [...]]]></description>
			<content:encoded><![CDATA[<p>Many people want to get started blogging and install WordPress on their own domain. Most people get scared at the thought of installing something to a server if they have never done this before, but it is really quite simple. In this post titled &#8220;How to Install WordPress&#8221; you will learn how to start from scratch and install a copy of the WordPress blogging software on yout website.</p>
<p>1. You will need a few things before you get started with your WordPress install.</p>
<ul>
<li>Your FTP or SHELL information, user name and password to allow you to upload files to your server</li>
<li>Your host will need to have the <a href="http://wordpress.org/about/requirements/" target="_blank">minimum requirements to run WordPress</a></li>
<li>You will need to create a database and a MySQL user on your web server</li>
<li>An editor a text-editor will do</li>
<li>A web browser</li>
</ul>
<p>2. <a href="http://wordpress.org/download/" target="_blank">Download</a> and unzip the latest version of WordPress</p>
<p>3. Find the <em>wp-config-sample.php</em> file and rename it to <em>wp-config.php</em></p>
<p>4. Open the file mentioned in step #3 and edit the database details to match those that you have set up on your web server</p>
<p>5. Upload your WordPress files to your desired location. If your entire site is going to be your WordPress installation then upload the files to the root folder. If you wish to have your WordPress at something like http://www.yoursite.com/blog then be sure to put your files in a folder named blog.</p>
<p>6. Run the <em>wp-admin/install.php</em> file by copying the filename and adding it to the end of the path to your WordPress install. (ex: http://www.yoursite.com/blog/wp-admin/install.php)</p>
<p>7. You&#8217;re done!</p>
<p>If you need more detailed instruction you can visit the WordPress website and visit the <a href="http://codex.wordpress.org/Installing_WordPress" target="_blank">Installing WordPress</a> section.</p>
<p>&#8212;&#8212;&#8212;-</p>
<p><em>This post was written by Simon Vreeswijk of <a href="http://www.stikkymedia.com">Stikky Media Social Media Marketing</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/how-to-install-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded Corners With CSS3</title>
		<link>http://educationwebdesign.com/rounded-corners-with-css3/</link>
		<comments>http://educationwebdesign.com/rounded-corners-with-css3/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 20:20:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=31</guid>
		<description><![CDATA[Rounded corners have long the bane of any web designers existence. CSS3 to the rescue. Follow this tutorial to learn how to make rounded corners using just CSS coding (that&#8217;s right, no images.) Of course, this will not work in Internet Explorer, but Firefox and Safari 3 users will see nicely rounded corners if you [...]]]></description>
			<content:encoded><![CDATA[<p>Rounded corners have long the bane of any web designers existence. CSS3 to the rescue. Follow this tutorial to learn how to make rounded corners using just CSS coding (that&#8217;s right, no images.) Of course, this will not work in Internet Explorer, but Firefox and Safari 3 users will see nicely rounded corners if you use the following CSS techniques.</p>
<h2>Firefox</h2>
<p>This code:</p>
<p>&lt;div style=&#8221;-moz-border-radius: 5px;&#8221; &gt;</p>
<p>Will allow your div to have rounded corners.</p>
<p>The following code will make an entire div or class have rounded corners with 5px indent on either corner. Set the radius in pixels to change the shape of the corners. You can even adjust each corner individually to have a different radius to provide a different look.</p>
<ul>
<li><code>-moz-border-radius-topleft: 5px;</code></li>
<li><code>-moz-border-radius-topright: 5px;</code></li>
<li><code>-moz-border-radius-bottomleft: 5px;</code></li>
<li><code>-moz-border-radius-bottomright: 5px;</code></li>
</ul>
<h2>Safari</h2>
<p>&lt;div style=&#8221;<code>-webkit-border-top-left-radius</code>: 5px;&#8221; &gt;</p>
<ul>
<li><code>-webkit-border-top-left-radius: 5px;<br />
</code></li>
<li><code>-webkit-border-top-right-radius: 5px;<br />
</code></li>
<li><code>-webkit-border-bottom-left-radius: 5px;<br />
</code></li>
<li><code>-webkit-border-bottom-right-radius: 5px;<br />
</code></li>
</ul>
<p>Hopefully one day Internet Explorer will join the rest of the world and we will no longer have to mess with multiple images, transparent png&#8217;s, javascript hacks, or whatever other pains you web designers go through while trying to create rounded corners.</p>
<p>&#8212;&#8212;&#8212;-</p>
<p><em>This post was written by Simon Vreeswijk of <a href="http://www.stikkymedia.com" target="_blank">Stikky Media Internet Marketing</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/rounded-corners-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Monetize Your Wordpress Blog with Adsense</title>
		<link>http://educationwebdesign.com/how-to-monetize-your-wordpress-blog-with-adsense/</link>
		<comments>http://educationwebdesign.com/how-to-monetize-your-wordpress-blog-with-adsense/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 20:27:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=18</guid>
		<description><![CDATA[It is important for all designers to keep current with web CMS trends. Learning how to upload a wordpress plugin is essential if you want to see any results in the search engines, as well as adding incredible functionality to your website. There&#8217;s a TON of wordpress plugins that will help get your site rolling [...]]]></description>
			<content:encoded><![CDATA[<p>It is important for all designers to keep current with web CMS trends. Learning how to upload a wordpress plugin is essential if you want to see any results in the search engines, as well as adding incredible functionality to your website. There&#8217;s a TON of wordpress plugins that will help get your site rolling right off the bat &#8211; whether you&#8217;re looking for some passive income via adsense (using the adsense injector plugin). Our favorite plugins for getting some extra revenue are definitely a combination of Search Engine Optimization modules with a few different adsense modules.<br />
<script type="text/javascript">
digg_url = 'http://educationwebdesign.com/how-to-monetize-your-wordpress-blog-with-adsense/';
digg_bgcolor = '#FFFFFF';
digg_skin = 'compact';
digg_window = 'new';
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
<h2>The Top Adsense Plugins for Wordpress</h2>
<p>Adsense and Wordpress work together in perfect harmony &#8211; these are the top adsense plugins suited for your website.</p>
<p><a href="http://wordpress-plugins.biggnuts.com/adsense-plugin/">Adsense Injection</a> &#8211; This adsense plugin injects adsense wherever you choose, using a code (once you set your publisher ID up) and injecting adsense wherever you want it in a post, using the tag &lt;!&#8211;adsense&#8211;&gt;, you can set up multiple styles, so setting up a few different looking ads with size and color schemes are integrated and called by using a unique code &#8211; for example &lt;!&#8211;adsense4&#8211;&gt; or whatever you choose to call it.</p>
<p><a href="http://wordpress.smullindesign.com/plugins/google-adsense-widget">Adsense WP Widget</a> &#8211; A quick and easy solution to creating an Adsense block to display on every page in your sidebar widgets (near your blogroll, etc). This plugin costs $1USD, don&#8217;t really know why, but hey &#8211; depending on your traffic you could make that back in a day.</p>
<p><a href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/">Adsense Deluxe</a> &#8211; This bad boy offers some unique options to manage automated insertion of your Adsense, and even your Yahoo feed. It has universal control to change your Adsense color scheme across your entire site.</p>
<p><a href="http://www.internetvibes.net/2006/09/29/adsense-wordpress-plugin/">Adsense Earnings</a> &#8211; This plugin is incredibly useful if you aren&#8217;t logged into your Google adsense account. This is useful for folks like me, logged into Gmail from another account, and then logging into Adsense with another&#8230; which logs me out of email most of the time. This plugin shows your daily earnings, and overall CTR of the site.</p>
<p><a href="http://www.whydowork.com/blog/whydowork-adsense-plugin/">Shylock</a> &#8211; This is another really uniquely designed Adsense plugin. This will swap the targetted keywords to higher-paying ones on posts older than X days, weeks, months. You need to really play around with this one and make it work for you.</p>
<p><a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-adrotator-rotate-your-ads-including-adsense-dynamically/">AdRotator</a> &#8211; A plugin that can manage adsense and affiliate banners, etc. Great for seeing your top performing ads on the site, and doing some split testing between Adsense/banners.</p>
<p><a href="http://adsense.ayanev.com/">RevShare</a> &#8211; A great, great plugin if you have guest writers on your blog &#8211; the option of letting them write for your site and having their own Adsense ads on page. They&#8217;ll be happy that their writing is benefiting you while they make a bit of passive income on the side.</p>
<p><a href="http://www.supriyadisw.net/2006/07/adsense-beautifier">Beautifier</a> &#8211; A fun one for designers. Images are placed near the Ad, to improve CTR &#8211; <span style="color: #ff0000;">Warning: may be against Adsense TOS</span></p>
<p><a href="http://urbangiraffe.com/plugins/google-ad-wrap/">Ad Wrap</a> &#8211; Want sectional targetting? Google spiders will love this one because it wraps your posts up in a nice targetted adsense wrap.</p>
<h2>Top Search Engine Optimization Plugins for Wordpress</h2>
<p>There are many SEO plugins that are completely awesome for wordpress. Not as many great options as the Adsense ones, but these are damn good.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-google-seo-positioner/">Google Position</a> &#8211; I am absolutely in love with this plugin. Easily track your position in the SERPs by placing your desired keywords. Main terms as well as long-tail keywords are trackable, and if you have clients using a wordpress site, this is almost a must. Giving detailed and accurate reports of the position of search terms, without having to search for yourself.</p>
<p><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO</a> &#8211; Another great plugin that helps you tailor your meta data. Page title, meta keywords, and description in a twitter fashion. Most search engines use a maximum of 160 chars for the description. It gives you a character count in a little box so you can maximize your keyword copy. Brilliant!</p>
<p><a href="http://www.memwg.com/seo-siloing-wordpress-plugin/">SEO Siloing</a> &#8211; This one may be a bit dated, but it&#8217;s perfect for those that don&#8217;t quite grasp the Wordpress setup in the permalinks area. Typical SEO practice is to have /%category%/%postname%/, this just overrides the settings to do exactly that.</p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/how-to-monetize-your-wordpress-blog-with-adsense/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
