<?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; admin</title>
	<atom:link href="http://educationwebdesign.com/author/admin/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>Education Web Design in Victoria</title>
		<link>http://educationwebdesign.com/education-web-design-in-victoria/</link>
		<comments>http://educationwebdesign.com/education-web-design-in-victoria/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 18:20:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design Diploma]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=29</guid>
		<description><![CDATA[If you&#8217;re a resident of Victoria BC, Canada, and are interested in participating in a web design diploma course &#8211; you can register for september at School Victoria. Education web design is a proud supporter of this fine institution, and they provide you with a complete package of education in web design. Learn how to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a resident of Victoria BC, Canada, and are interested in participating in a web design diploma course &#8211; you can register for september at <a href="http://www.schoolvictoria.com">School Victoria</a>. Education web design is a proud supporter of this fine institution, and they provide you with a complete package of education in web design. Learn how to incorporate graphic design from photoshop and illustrator into wireframe websites using dreamweaver, or a drupal content management system. You will learn about CSS (Cascading style sheets), and even a bit of PHP!</p>
<p>So check it out in the website listed above. Your education in web design is waiting for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/education-web-design-in-victoria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Development in the United States (Infographic)</title>
		<link>http://educationwebdesign.com/development-in-the-united-states-infographic/</link>
		<comments>http://educationwebdesign.com/development-in-the-united-states-infographic/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 22:14:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Infographics]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=26</guid>
		<description><![CDATA[Development in the United States:

]]></description>
			<content:encoded><![CDATA[<p>Development in the United States:</p>
<p><img src="http://educationwebdesign.com/wp-content/uploads/5.jpg" alt="" width="555" height="260" /></p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/development-in-the-united-states-infographic/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>
		<item>
		<title>How Infographics Make Learning Interesting</title>
		<link>http://educationwebdesign.com/how-infographics-make-learning-interesting/</link>
		<comments>http://educationwebdesign.com/how-infographics-make-learning-interesting/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 22:51:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=15</guid>
		<description><![CDATA[By definition, an Infographic is &#8220;an Information graphic &#8211; a visual representation of data&#8221;. When you have complex statistics and data, how else are you going to give it that mass appeal that new media companies are striving for?
Your basic infographic will have all the important statistics and data laid out. For example, when someone [...]]]></description>
			<content:encoded><![CDATA[<p>By definition, an Infographic is &#8220;an Information graphic &#8211; a visual representation of data&#8221;. When you have complex statistics and data, how else are you going to give it that mass appeal that new media companies are striving for?</p>
<p>Your basic infographic will have all the important statistics and data laid out. For example, when someone wanted to blog about the recession and which companies are &#8220;sinking ships&#8221;, they created something ingenious:</p>
<p><img class="alignnone" title="Largest Bankruptcies" src="http://educationwebdesign.com/wp-content/uploads/trans0609largestbankruptcies.jpg" alt="" width="555" height="455" /></p>
<p>The clever idea of sinking ships representing companies that go under, the bigger the boat, the more they were in debt.<br />
Here&#8217;s another infographic &#8211; one that is just not in English:</p>
<p><img class="alignnone" title="Infographic" src="http://educationwebdesign.com/wp-content/uploads/17.jpg" alt="" width="555" height="765" /></p>
<p><strong>Infographics are changing the way social media is represented as well.</strong></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/how-infographics-make-learning-interesting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Victoria BC</title>
		<link>http://educationwebdesign.com/web-design-victoria-bc/</link>
		<comments>http://educationwebdesign.com/web-design-victoria-bc/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:06:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design Diploma]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[VSBT]]></category>
		<category><![CDATA[Web Design Course]]></category>
		<category><![CDATA[Web Design Victoria BC]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=12</guid>
		<description><![CDATA[Interested in Web Design? Are you a resident of Victoria BC? We may have something for you.
There are great programs for Web Design Victoria BC, all you need to do is keep reading! North Studio and VSBT have teamed up to create a powerful synergy between a Web Design diploma, and an internship with North [...]]]></description>
			<content:encoded><![CDATA[<p>Interested in Web Design? Are you a resident of Victoria BC? We may have something for you.</p>
<p>There are great programs for <a href="http://www.northstudio.com">Web Design Victoria BC</a>, all you need to do is keep reading! North Studio and VSBT have teamed up to create a powerful synergy between a Web Design diploma, and an internship with North Studio upon graduation. The 8 month course is extremely popular for people just graduating highschool, or for full time employees looking to upgrade their web design skill set. Victoria BC is an industry leader when it comes to web design &#8211; a lot of local companies are always on the lookout for talented designers.</p>
<h2>Website Design Victoria</h2>
<p>North Studio is a great resource for getting clients set up with fully functional websites, from Blogs to E-Commerce shopping systems &#8211; they do it all. If you&#8217;re interested in taking a course at VSBT for Web Design (and you&#8217;re in Victoria BC), check out the <a href="http://educationwebdesign.com/about/">VSBT Courses</a> listed on our &#8220;About&#8221; page. Once complete, you&#8217;ll be on your way out the door with a head full of new skill and ability, and you&#8217;ll be confident when selling yourself as a designer. Want to learn more about Drupal? We do that too!</p>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/web-design-victoria-bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Educators</title>
		<link>http://educationwebdesign.com/photoshop-educator/</link>
		<comments>http://educationwebdesign.com/photoshop-educator/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 18:47:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design Diploma]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Photoshop Educator]]></category>

		<guid isPermaLink="false">http://educationwebdesign.com/?p=7</guid>
		<description><![CDATA[As you go to achieve your goals in the field of Web Design you might want to actually consider getting some Photoshop training as well. There are only a handful of Adobe Certified Web Design institutions, and they are so worth the time and money. To get formal training from Photoshop Educators as well as [...]]]></description>
			<content:encoded><![CDATA[<p>As you go to achieve your goals in the field of Web Design you might want to actually consider getting some Photoshop training as well. There are only a handful of Adobe Certified Web Design institutions, and they are so worth the time and money. To get formal training from Photoshop Educators as well as learning InDesign, Illustrator, and other Adobe programs.</p>
<h2>About Photoshop Educators</h2>
<p>Your instructor is a fully certified Photoshop Educator. This means he or she has been certified by Adobe and the place they teach to share their wealth of knowledge and train up some potential web designers. Whether you decide to do photoshop as a hobby, or as a career in web design, your Photoshop educator will have all the necessary teaching tools to get you where you need to be.</p>
<p>To learn more about your potential Photoshop Educator, please check out the Victoria School of Business and Technology&#8217;s <a href="http://www.schoolvictoria.com/adobe_certified/index.html">Certified Adobe Instructors</a>.</p>
<h2>What Your Photoshop Educator will do for You</h2>
<p>Your Photoshop educator will provide:</p>
<ul>
<li>A training facility offering top instructor-lead courses in Photoshop and other Adobe products. All Adobe training centers must have Adobe Certified Instructors (ACI&#8217;s) to teach the courses as well as meeting other requirements.</li>
<li>A pace that your personal learning style can handle.</li>
<li>A sense of achievement when you complete projects and tasks.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://educationwebdesign.com/photoshop-educator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
