<?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>RoundRobin Studios Blog</title>
	<atom:link href="http://www.roundrobinstudios.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.roundrobinstudios.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 14 Sep 2010 14:23:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Mastering and Understanding CSS: Positioning</title>
		<link>http://www.roundrobinstudios.com/blog/mastering-and-understanding-css-positioning</link>
		<comments>http://www.roundrobinstudios.com/blog/mastering-and-understanding-css-positioning#comments</comments>
		<pubDate>Tue, 14 Sep 2010 14:14:49 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Absolute Positioning]]></category>
		<category><![CDATA[Complex Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS designer]]></category>
		<category><![CDATA[Css Master]]></category>
		<category><![CDATA[CSS Web Designer]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[Freelance web Designer]]></category>
		<category><![CDATA[Standards Web Developer]]></category>
		<category><![CDATA[W3c Standards]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web design company]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[website standards developer]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=141</guid>
		<description><![CDATA[CSS Positioning is misunderstood in the sense that it’s a big part of the family but not everyone get him.  ]]></description>
			<content:encoded><![CDATA[<p>CSS Positioning is the web design industries misunderstood nephew, in the sense that it’s a big part of the family but not everyone get him.  Truth-be told Positioning is one, if not the most important part of CSS.  Sure you can get the job done without it, but the day I fully grasped its power my builds took about a third of the time, thus making me more valuable my clients and other employers.</p>
<p>CSS Positioning is becoming an absolute must in the “new web”.  With Jquery animations and complex designs becoming more and more popular it’s a necessity to master this CSS property.</p>
<p>Elements are positioned using 4 directional properties.. top, left, right and bottom.  They each work differently according to the set positioning type.</p>
<p>There are three basic properties to getting positioning to work, and we’ll talk about each.</p>
<ul>
<li>Choose the right type of Position of the Situation</li>
<li>The Coordinates (top, left, right, bottom)</li>
<li>The z-index to overlap elements (optional)<span id="more-141"></span></li>
</ul>
<p><strong> </strong></p>
<h2>Choose the right type of Position of the Situation</h2>
<p>There are 4 types of positioning, lets break them down.</p>
<p><strong>Position: static</strong> is the default position type to all CSS elements.   The Static elements are always positioned according to normal float and margin properties of CSS.</p>
<p><strong>Position: fixed </strong>is when an element is positioned relative to the entire browser window.  These types of elements will not move even when the browser window is scrolled horizontally and vertically.</p>
<p>Example: <a href="http://www.digimantra.com/">http://www.digimantra.com/</a></p>
<p>#fixed_div {<br />
position:fixed;<br />
top:150px;<br />
left:0;<br />
}</p>
<p><a href="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/09/fixed.jpg"><img class="alignnone size-medium wp-image-142" title="fixed" src="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/09/fixed-530x191.jpg" alt="" width="530" height="191" /></a></p>
<p><strong>Position: relative</strong> is pretty self-explanatory, its relative to its current position.  Relative positioning is commonly used to set a new coordinate origin for an element.  Example, if you were to add left:10px and top:10px to an element, that element would then move up and to the left 10px but still preserving the empty space of 10px on the bottom and right.  This allows you to overlap elements for a more complex design.    Relative positioning is also used to set the base position of its absolutely positioned child elements, we’ll get to that later.</p>
<p><strong> </strong></p>
<p><strong>Position: absolute</strong> is pretty useless on its own, but a element with absolute positioning can be placed anywhere on the canvas within an X and Y coordinate.   By default each element has a base position of 0,0 in the top left corner of your browser view port (html).  The positioned absolute element will be removed from the normal flow of the document completely and all white space will be removed with it, unlike its “cousin” relative positioning.</p>
<p><strong> </strong></p>
<h2>The Coordinates (top, left, right, bottom)</h2>
<p><strong> </strong></p>
<p>Pretty easy here, the coordinates are the X and Y position on the canvas.  You can specify them from the CSS properties top, left, right or bottom.   All by default will be set to 0.  Relative will be the X and Y “relative” to its current position.  Absolute will be the X and Y according to its relative positioned parent.  Fixed will be the X and Y according to the Browsers view port.  And finally Static does not take X and Y coordinates, they will be ignored all together.</p>
<h2>The z-index to overlap elements (optional)</h2>
<p><strong> </strong></p>
<p>Complex designs sometimes all for elements to overlap, sometimes referred to as layers by designers (in reference to the layers commonly used in the Abobe application Photoshop).  Think of the Z-Index property like stacking layers of paper.  You have 10 pieces of paper on top of each other, if you were to give each one a z-index the top would be 9 and the very bottom 0 and each piece a sequential number in between.    This is pretty easy to grasp, but the only issue you’ll run into is with Internet Explorer.    Unlike more modern browser that treats each element as its own “z-index parent” where you can place and element inside a #header div over an element in a #content div effortlessly, IE is a little stricter when it comes to indexing.  So best practice is to make the parent element have a higher z-index than the element you are trying to overlap.  You won’t find much documentation on this bug, but definitely one I’ve ran into from time to time, especially when working with CSS drop down menus.</p>
<h2>So how’s this all come together?  How do I decrease my build time?</h2>
<p>I’m glad you asked.  This is where everything clicked for me in web design.  Combining relative positioned elements with absolute positioned elements is the quickest and most efficient way to lay out static areas.    By static areas I don’t mean non-PHP areas,  I mean areas on a website with a fixed height that doesn’t change with content such as headers, footers, and for the purpose of this example a constrained fixed layout.</p>
<p>You can see by setting the container DIV to position relative I’ve now set a new origin for the inner absolutely positioned elements.  I think the diagram speaks for itself.  All the inner children of the relatively positioned parent now move and overlap each other within that contained area.   Have questions or comments?  Please ask!</p>
<p><a href="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/09/position.jpg"><img class="alignnone size-medium wp-image-143" title="position" src="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/09/position-445x300.jpg" alt="" width="445" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/mastering-and-understanding-css-positioning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Reasons WordPress is the Best Content Management System</title>
		<link>http://www.roundrobinstudios.com/blog/top-10-reasons-wordpress-is-the-best-content-management-system</link>
		<comments>http://www.roundrobinstudios.com/blog/top-10-reasons-wordpress-is-the-best-content-management-system#comments</comments>
		<pubDate>Tue, 17 Aug 2010 17:46:59 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web design project]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[website standards developer]]></category>
		<category><![CDATA[wordpress cms]]></category>
		<category><![CDATA[Wordpress Designer]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress images]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[Wordpress SEO]]></category>
		<category><![CDATA[wordpress website design]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=124</guid>
		<description><![CDATA[On average sites built in Wordpress will rank better on Google.   Its rare that a CMS comes fully functional for SEO, and Wordpress has been doing it for years.]]></description>
			<content:encoded><![CDATA[<h2>10.  Search Engines (Google) and WordPress were made for each other</h2>
<p>On average, sites built in WordPress will rank better on Google.   Its rare that a CMS comes fully functional for SEO, and WordPress has been doing it for years.  &#8220;Out-of-the-Box&#8221; WordPress comes with the ability to change linking structures, title tags, keywords, descriptions, and the linking structure automatically detects duplicate page names in order to prevent Google from indexing sites twice!    On top of the default functionality, plug-ins like &#8220;All in One SEO&#8221; make per page optimization a breeze!<span id="more-124"></span></p>
<h2>9. The Blogging Software is top of the line</h2>
<p>Hands down, no questions asked, WordPress has been and will continue to be the best blogging application out there.  The simplistic nature of the interface with complex functionality makes WordPress easy to pick up and learn but also doesn&#8217;t skip out on impressive functionality like Images in posts, Recent Posts, Recent Comments, Top talked about posts, and the list goes on!  If you&#8217;re an avid  blogger or trying to write blogs for SEO there is literally no excuse to not be using the WordPress platform.</p>
<h2>8.  Its Free</h2>
<p>The saying &#8220;Nothing in Life Comes Free&#8221; is definitely disproved with the existence of WordPress.  WordPress literally cost nothing, and with a skilled web designer you could buy a premium template and have a custom website up in literally a day.  We at Round Robin do it for as little as $400!   A prepared client could have their up in as little as a day or two!</p>
<h2>7. Matt Mullenweg and the WordPress Community</h2>
<p>Normally if you were to change a huge chunk of a website or any CMS you&#8217;d have to hire a professional programmer to spend countless hours and potentially thousands of your dollars to add some functionality to the site such as calendars, related pages, Accordions, Lightboxes, or anything of that nature.    WordPress is backed by the industry, and that means you have 10s of thousands of developers at your hands for free in most cases. Matt Mullenweg, the founder and owner of WordPress, has made WordPress open source and free to everyone.  That means people are constantly updating and expanding the WordPress platform.  There are literally millions of plugins that add different functionality to WordPress.    Most are free and some of the premium plugins cost as little as $40.</p>
<h2>6. Its Simple as Pie, and just as tasty!</h2>
<p>I started using WordPress years ago because of its simplicity.  I can literally ask the client &#8220;Do you know how to use Microsoft Office?&#8221; and if their response is anything short of &#8220;not at all&#8221;,  i know they&#8217;ll be just fine using WordPress.  WordPress was made to be basic just like any other simple publishing tool.  The similarities of WordPress and Microsoft Office are countless, and because of its great planning and years of experience, anything that isn&#8217;t familiar will quickly become that due to its great Interface Design and usability.   I fell in love with WordPress from day one as a designer/developer and its just as captivating for the user and average blogger.</p>
<h2>5. 110% Customizable</h2>
<p>Literally everything in WordPress can be customized and put in the control of the user.  With the release of the long anticipated WordPress 3.0 it is now truly the best CMS ever made.  The new Custom Post Types let you add multi-editable regions to each page.  Now you&#8217;re no longer restricted to one content area.   That combined with the widgets, that have been the anchor of WordPress for years, there is absolutely no reason that anything isn&#8217;t possible with WordPress in this day and age.</p>
<h2>4. You can&#8217;t beat its Security</h2>
<p>With Millions of WordPress blogs and sites online today you can imagine that Security is of top concern for the WordPress team.  You can rest assure that your data and website will be completely safe with WordPress.  If you keep up to date with WordPress and keep it in order, it&#8217;ll take care of you.  As it is true that no website is 100% secure, WordPress has always and will always make Security its top priority.</p>
<h2>3. Multiple Sites, One Database, One installation</h2>
<p>Also with the release of WordPress 3.0 you can install multiple sites on one installation of WordPress.  You can edit every site you own from one central location.  This has been around for a few years, but up until now it was a little tricky.  The WordPress team really over did themselves on this release, its truly a master piece.   Right before the release of 3.0 I sat down with <a href="http://markjaquith.com/" target="_blank">Mark Jaquith</a>, WordPress&#8217;s Lead Developer and he explained to me that Combining WordPress MU (Multi-Site) and WordPress was the teams top priority and they spent countless man hours to get it perfect, and believe me it is.</p>
<h2>2. Its Social.  WordPress has lots of Friends.</h2>
<p>In the age of Social Networking getting the word out about your business has never been easier.  WordPress syncs pretty effortlessly with all social networking accounts.    It has a plugin to auto-post all blogs to Facebook, Digg, Twitter, or whatever else you need.  And if your Network isn&#8217;t supported every WordPress installation automatically has an RSS feed that most Social Networking sites will except.</p>
<h2>1. The Pros Use it, And We Recommend It Heavily</h2>
<p>If Lebron James told you that his Nike&#8217;s were the best shoe on earth and they made him play better, jump higher, and run faster you&#8217;d probably listen to him.   With over 15 Million WordPress Sites in existence (Over 1%, that&#8217;s a lot in the web world) it is the most used CMS system out there.   Its quickly making people forget what Joomla is, and people are reconsidering Drupal everyday.</p>
<h3>Check out some WordPress site&#8217;s we&#8217;ve built lately&#8230;</h3>
<p><a href="http://www.tossed.com" target="_blank">Tossed.com</a><br />
<a href="http://www.cash4iPhones.com" target="_blank">cash4iPhones.com</a><br />
<a href="http://www.epicbootcamp.com/fitnessblog" target="_blank">EpicBootCamp.com Fitness Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/top-10-reasons-wordpress-is-the-best-content-management-system/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Quickly display the latest image uploaded to a post or page</title>
		<link>http://www.roundrobinstudios.com/blog/wordpress-display-the-last-image-uploaded-to-a-post-or-page</link>
		<comments>http://www.roundrobinstudios.com/blog/wordpress-display-the-last-image-uploaded-to-a-post-or-page#comments</comments>
		<pubDate>Wed, 21 Jul 2010 14:07:21 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog images]]></category>
		<category><![CDATA[display images]]></category>
		<category><![CDATA[latest image posts]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress images]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[wordpress website design]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=107</guid>
		<description><![CDATA[All to often clients want to put pictures on individual posts or pages.   Placing images on blog posts has to be one of the easiest way to increase bounce rate.]]></description>
			<content:encoded><![CDATA[<p>All to often clients want to put pictures on individual posts or pages.   Placing pictures on blog posts has to be one of the easiest way to increase the amount of time a visitor spends on a blog.   Appropriate pictures can add to the dynamics of a blog posts and for those visual readers, it makes reading a whole lot bearable.</p>
<p>With more blogs than every going up on a daily basis bloggers now need to consider a better way to make their information stand apart from the rest.  In the year 2010, in the age of digital media were the average human has the attention plan for a 5 year old, the easiest way to spruce up a blog post and grab someones attention is images.  Videos would be even better, but for today we&#8217;ll focus on images.<span id="more-107"></span></p>
<p>An image can enhance the blog in a number of ways ranging from providing a visual point of interest, grabbing attention, or simply to draw the readers eyes down to the first few lines to get them reading.  Never underestimate the power of visuals whether it be on the web or in a simple PowerPoint presentation for your office.  In this day and age, specially people of my generation, we have been over stimulated and bombarded with flashy advertising and gimmicks our entire lives so plain text just doesn&#8217;t cut it.</p>
<p>Below is the few simple steps to the easiest way to include images into a post&#8230;</p>
<h3>Access to your functions.php file of your theme</h3>
<p>Open up your theme&#8217;s function.php file and add this script.  This script will give you the ability to post both the latest image as a developer and a shortcode as a user.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> sc_postimage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">&quot;size&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'thumbnail'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">&quot;float&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'none'</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$images</span> <span style="color: #339933;">=&amp;</span>amp<span style="color: #339933;">;</span> get_children<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'post_type=attachment
               &amp;amp;post_mime_type=image&amp;amp;post_parent='</span> <span style="color: #339933;">.</span> get_the_id<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$images</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$imageID</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$imagePost</span> <span style="color: #009900;">&#41;</span>
	<span style="color: #000088;">$fullimage</span> <span style="color: #339933;">=</span> wp_get_attachment_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$imageID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$imagedata</span> <span style="color: #339933;">=</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span><span style="color: #000088;">$imageID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$width</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$imagedata</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$height</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$imagedata</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'
&nbsp;
&lt;div class=&quot;postimage&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$fullimage</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/div&gt;
&nbsp;
&nbsp;
'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;postimage&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;sc_postimage&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Display the image, as a user</h3>
<p>To display an image on the back-end system of wordpress its pretty simple.   The code above has created a shortcode for the user to place.   Simple place the following code where you want it to show up on the visual editor.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#91;</span>postimage<span style="color: #009900;">&#93;</span></pre></div></div>

<h3>Display the image, as a developer</h3>
<p>Displaying an image in a pre-defined spot on the template as a developer is just as easy.  Simple place this snip-it of code anywhere in the theme&#8217;s template you wish the latest image to show.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #b1b100;">echo</span> sc_postimage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Customize the code</h3>
<p>By default this code displays the image in whatever size you have WordPress set as &#8220;thumbnail&#8221;.  You can change the size to large and medium by changing the variable &#8220;size&#8221; in the array below.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> sc_postimage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">&quot;size&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'thumbnail'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">&quot;float&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'none'</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$atts</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h3>Questions?</h3>
<p>Feel Free to Comment, I&#8217;ll get back to you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/wordpress-display-the-last-image-uploaded-to-a-post-or-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Round Robin signs new Client, iPhone Mecca!</title>
		<link>http://www.roundrobinstudios.com/blog/round-robin-signs-new-client-iphone-mecca</link>
		<comments>http://www.roundrobinstudios.com/blog/round-robin-signs-new-client-iphone-mecca#comments</comments>
		<pubDate>Wed, 14 Jul 2010 16:36:09 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Clients]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=98</guid>
		<description><![CDATA[iPhone Mecca will sell refurbished iPhones as well as the latest accessories from the worlds most reputable iPhone manufacturers.]]></description>
			<content:encoded><![CDATA[<p>Last year I built a template based site for a <a href="http://www.cash4iphones.com" target="_blank">iphone reseller company, Cash4iPhones</a>.  With overwhelming success and record profits from the website they have decided they need a store front to sell all the iphones they&#8217;ve been purchasing.  They&#8217;ve signed on to create the front end of the store, iPhone Mecca.com!<span id="more-98"></span></p>
<p>iPhone Mecca will sell all of the refurbished iPhones they have as well as the latest accessories from the worlds most reputable iPhone accessory manufacturers.  The site will showcase accessories ranging from cases to speakers and everything in between!</p>
<p>The site will be built using the e-commerce solution <a href="http://www.magentocommerce.com/" target="_blank">Magento</a>.  This custom designed ecommerce site will be developed in valid XHTML/CSS and is expected to rollout over the next few months!  Check back later for its launch date!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/round-robin-signs-new-client-iphone-mecca/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 and CSS3 should be taken with a grain of salt… for now..</title>
		<link>http://www.roundrobinstudios.com/blog/html5-and-css3-should-be-taken-with-a-grain-of-salt%e2%80%a6-for-now</link>
		<comments>http://www.roundrobinstudios.com/blog/html5-and-css3-should-be-taken-with-a-grain-of-salt%e2%80%a6-for-now#comments</comments>
		<pubDate>Mon, 26 Apr 2010 15:49:51 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[CSS3 technologies]]></category>
		<category><![CDATA[HTML4 enabled browsers]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[web design industry]]></category>
		<category><![CDATA[web design standard]]></category>
		<category><![CDATA[website developers]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=81</guid>
		<description><![CDATA[I think we’re going to see a lot more JS being used to degrade HTML5/CSS3 websites into something viewable for IE6-8.]]></description>
			<content:encoded><![CDATA[<p>Let’s eliminate all the flaming before it begins.  I DO support HTML5, and all of its new features that will revolutionize the web design industry… <strong>eventually</strong>.</p>
<p>I say eventually because let’s face it no matter how much we’d love to have an Industry Standard browser community it won’t happen anytime soon.  Even with the recent preview of Internet Explorer 9, it seems like Microsoft is coming around to play with the rest of us. Internet Explorer 9’s release will most likely put Microsoft back in the web browser game.   According to the preview, it will surpass Firefox in a lot of ways.<span id="more-81"></span></p>
<p>The plain fact is percentages and statistics of the web users.   15% of the world still uses IE6, an 8 year old product of Microsoft which does not support HTML5 and CSS3.   On top of that we’re forgetting the rest of the people that will take years to upgrade their browsers from IE7 and IE8.</p>
<p>There are three HUGE browsers that make up over 50% of the users in the world that do not support HTML5 and CSS3.  Until the percentage of users still using CSS2 and HTML4 enabled browsers lessens, I don’t see HTML5 or CSS3 becoming a web design standard until at least 2013 if not later.</p>
<p><strong>Prediction</strong>…  I think we’re going to see a lot more JavaScript being used to degrade HTML5/CSS3 websites into something viewable for IE6-8.   You see this currently in the industry with the PNGFix for IE6 and countless other IE6 hacks that are slowly not being used anymore as more and more website developers refuse to support an 8 year old browser.</p>
<p>In short, I personally am not investing all my time into learning the new HTML5 and CSS3 technologies simply because it’s not needed yet.  I’ll step up my HTML5/CSS3 knowledge when I can safely use it for all my users.</p>
<p>Although on the flip side almost all major internet companies are backing the new HTML5 which is a first for our industry&#8230; Steve Jobs (Apple) and Google have been publicly endorsing HTML5 for months.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/html5-and-css3-should-be-taken-with-a-grain-of-salt%e2%80%a6-for-now/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Website Case Review – Light CMS</title>
		<link>http://www.roundrobinstudios.com/blog/website-case-review-light-cms</link>
		<comments>http://www.roundrobinstudios.com/blog/website-case-review-light-cms#comments</comments>
		<pubDate>Mon, 19 Apr 2010 22:44:50 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[extraordinary website design]]></category>
		<category><![CDATA[marketing tool]]></category>
		<category><![CDATA[professional website design]]></category>
		<category><![CDATA[simple web design]]></category>
		<category><![CDATA[web design project]]></category>
		<category><![CDATA[website usability]]></category>
		<category><![CDATA[well designed webage]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=62</guid>
		<description><![CDATA[From time to time when I come across extraordinary websites that are not my own, I will review them and write a synopsis about their features. ]]></description>
			<content:encoded><![CDATA[<p>From time to time when I come across extraordinary website design that is not my own, I will review them and write a synopsis about their features.   This website has been around for awhile, but every time I take a look at it I find something new I like about it.</p>
<h2>Light CMS by Element Fusion, LLC</h2>
<p><a href="http://www.speaklight.com/" target="_blank">http://www.speaklight.com</a><span id="more-62"></span></p>
<h3>Content Organization…</h3>
<p>This website does an extraordinary job at organizing its content in a appealing and stimulating manner. The homepage uses a common, but successful block by block layout, multiple features that are called out in blocks.</p>
<h3>Pricing Page…</h3>
<p>This pricing page is a great example of very well designed webage.  It’s simple but invigorating.   You understand what you are getting with your product.   All too often when it comes to selling a product a lot of companies like to say entirely too much, example <a href="http://www-03.ibm.com/systems/storage/?cm_re=masthead-_-products-_-stg-allstorage">IBM’s website</a>.  IBM is one of the world’s largest computer distributors, and fails terrible when it comes to their online presence.  Their website is unorganized, poorly designed, and it’s hard to pretty much find any specific item.</p>
<p><a rel="attachment wp-att-73" href="http://www.roundrobinstudios.com/blog/website-case-review-light-cms/2010-04-19_1829"><img class="alignnone size-medium wp-image-73" title="2010-04-19_1829" src="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/04/2010-04-19_1829-530x223.png" alt="" width="530" height="223" /></a></p>
<h3>Call to Action…</h3>
<p>When you visit this site your immediate user response is to watch that video, and sign up.   The orange is a high contrast color that makes you immediately see that button first.  This wasn’t done on accident, Element Fusion knows exactly what the object of this site is and exactly how to get users to do what they want.</p>
<p>A large part of web design project is not only making the website look pretty, but through understanding how users act and surf the web you can actually make someone more likely to go to one section of the website based on position, design, and content rather than another.  This is a PERFECT example of website usability in the works.</p>
<p>Even when you leave the homepage, those call to action buttons remain at the very top in plain sight.</p>
<p><a rel="attachment wp-att-74" href="http://www.roundrobinstudios.com/blog/website-case-review-light-cms/calltoaction"><img class="alignnone size-medium wp-image-74" title="calltoaction" src="http://www.roundrobinstudios.com/blog/wp-content/uploads/2010/04/calltoaction-530x268.png" alt="" width="530" height="268" /></a></p>
<h2>Synopsis</h2>
<p>This professional website design is one of the best examples online of how you can turn what some may view as a simple web design, into one complex marketing tool.  This website has been so well though that I cannot find one thing to improve on.  I see reason behind every button placement, behind every color, and every block of content.  I give it 5 Stars in my book.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/website-case-review-light-cms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Chronicle of My Rise into the Web Design Community</title>
		<link>http://www.roundrobinstudios.com/blog/the-chronicle-of-my-rise-into-the-web-design-community</link>
		<comments>http://www.roundrobinstudios.com/blog/the-chronicle-of-my-rise-into-the-web-design-community#comments</comments>
		<pubDate>Fri, 16 Apr 2010 20:59:55 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Web Related Rants]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web design community]]></category>
		<category><![CDATA[web design company]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[web designing]]></category>
		<category><![CDATA[website front-end development]]></category>
		<category><![CDATA[website standards developer]]></category>

		<guid isPermaLink="false">http://www.roundrobinstudios.com/blog/?p=49</guid>
		<description><![CDATA[I decided it’d be beneficial to tell everyone a little about myself.   Where I’m from, how I got into designing, and where I’m heading.]]></description>
			<content:encoded><![CDATA[<p>People like to know who they are entrusting with their company’s marketing, I don’t blame them.  So I decided it’d be beneficial to tell everyone a little about myself.   Where I’m from, how I got into web designing, and where I’m heading.<span id="more-49"></span></p>
<h2><strong>…And There Was One</strong></h2>
<h2><strong> </strong></h2>
<p><strong> </strong>I was born and raised in a small town in Northern Pennsylvania.  I never really understood what the internet was until I was 14ish.  I heard kids talk about it on the playground but my family didn’t own a PC until I was out of grade school.   My first PC during middle school; I specially remember it was a Gateway with 7MB of HD space&#8230;  <strong>SEVEN! </strong> <strong> </strong></p>
<p>I immediately got into HTML 3 and was building table based sites.  I was actively involved in the early blogging communities which eventually lead to me learning HTML.   During high school I was enrolled in a Technical school to learn Computer Science.   I dabbled in some COBOL, C++, Visual Basic, and Java stuff but kept my sole interest in the web.  Even at an early age I understood how profitable the internet was, and knew the importance of what it would become in the following years.</p>
<h2><strong>The Quest</strong></h2>
<h2><strong> </strong></h2>
<p><strong> </strong>In 2004, my quest to become a web designer had begun.  I took what little knowledge I had of the industry and the world and drove 3hrs south to Pittsburgh, Pennsylvania.    I attended one of the countries only and best web design schools, the Art Institute of Pittsburgh at the time.   6 years ago a web design degree was relatively unheard of.  Most people were graphic designers that became web designers, which is a whole separate issue and plagues the web design community.</p>
<p>For 2 years I studied, did the college thing, but through personal anguish was forced to leave Pennsylvania.  I continued my studies in Fort Lauderdale, FL, and that is where my talent actually began to flourish…</p>
<h2><strong>The Rise</strong></h2>
<h2><strong> </strong></h2>
<p><strong> </strong>For 2 more years I learned everything I possibly could about the web.  Here is a short list of what I dabbled in…</p>
<table>
<tbody>
<tr>
<td>
<ul>
<li>Flash</li>
<li>Actionscript</li>
<li>Design</li>
<li>CSS</li>
<li>XHTML</li>
<li>HTML</li>
</ul>
</td>
<td>
<ul>
<li>Video production</li>
<li>Audio production</li>
<li>PHP</li>
<li>ASP</li>
<li>Usability</li>
<li>SEO</li>
<li>And more!</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>Alas I settled with Standards development.   Standards, is an industry term to basically describe website front-end development, CSS/XHTML/and JavaScript.  These languages make up the visual aspect of a website.  Some would argue the most important.</p>
<p>I graduated school and now work full-time at PaperStreet Web Design, a primarily lawyer niched web design company, as well as here at Round Robin.</p>
<p>Now with over <strong>7 years</strong> of learning and loving all things web design related <em>(Almost half the time the UI based web has been around – 15 years) </em>and with 4 years of professional experience working with actual clients,  I am proud to say that I have reached a professional level I am happy with.  I have risen at the young age of 23, and have no plans of stopping.</p>
<h3><strong>Recap</strong></h3>
<ul>
<li>7 years learning web design</li>
<li>4 years working professionally</li>
<li>2 years as lead website standards developer</li>
<li>Over 50 projects completed.</li>
</ul>
<h2><strong>The Future</strong></h2>
<h2><strong> </strong></h2>
<p><strong> </strong>I am a firm believer in your life being what you make it.   So my plans you ask?  I want to continue to grow and develop with the web, that’s for sure.   With the introduction of the new HTML5 and CSS3 languages, a lot of possibilities will open and there is a lot more to learn.</p>
<p>The possibility of moving back to Pennsylvania is always evident.  Philadelphia?</p>
<p>And of course being more active in the web design community.  Maybe get my name out there?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/the-chronicle-of-my-rise-into-the-web-design-community/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RoundRobin Studios Launches It&#8217;s 2010 Website!</title>
		<link>http://www.roundrobinstudios.com/blog/roundrobin-studios-launches-its-2010-website</link>
		<comments>http://www.roundrobinstudios.com/blog/roundrobin-studios-launches-its-2010-website#comments</comments>
		<pubDate>Fri, 09 Apr 2010 03:23:17 +0000</pubDate>
		<dc:creator>Kyle Aikens</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cutting edge website development]]></category>
		<category><![CDATA[New Website]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[Website build]]></category>
		<category><![CDATA[website development project]]></category>
		<category><![CDATA[website industry]]></category>
		<category><![CDATA[Website redesign]]></category>

		<guid isPermaLink="false">http://rr.com.s81727.gridserver.com/blog/?p=19</guid>
		<description><![CDATA[Good News all!  I finally finished RoundRobin's new Website! This new website is a year and half in the making.  ]]></description>
			<content:encoded><![CDATA[<p>Good News all!  I finally finished <a href="http://www.roundrobinstudios.com">RoundRobin&#8217;s new Website!</a> This new website is a year and half in the making.  I went through an unmentionable amount of redesigns, and 2-3 complete builds before being happy with this one.  Such is the life of a web designer.</p>
<p>The new site not only has a modern design but is using the latest web technologies, JavaScript libraries, and web standards.  This new site is W3C validated, has a cool animated sorting Portfolio and showcases a stunning blog.</p>
<p>Over the past year I&#8217;ve struggled with conveying what RoundRobin means to me.  I started off w/ an illustrated Robin, and have now ended up with an entire new branding scheme.   So what does RoundRobin mean?  Although there are multiple meanings lets define it in the way that makes the most sense&#8230;</p>
<blockquote><p><strong>Round-Robin: </strong>Describes  a document authored by numerous individuals as a group (as found in a petition).</p></blockquote>
<p>I like to think of RoundRobin as community of individuals that make this company.  Although I personally handle much of the design and development in the company, I often find myself reaching out to others in the website industry for advice, inspiration or even help on some projects.  I have a close network of 3D artists, SEO specialists, and Advanced Flash/Actionscript Gurus that keep this company doing cutting-edge website development and internet marketing.</p>
<p>Every successful project is a collaboration between designers, developers, and of course <em>clients</em>!  All projects here are in a Round-Robin style, every website development project is a community involvement.</p>
<p>Thank you everyone for this years success!  Shout-outs to <strong>Jacob Right</strong> from <a href="http://www.epicbootcamp.com" target="_blank">Epic BootCamp</a>, <strong>Tiffany Tobol</strong> from <a href="http://www.webchiquemarketing.com/" target="_blank">Web Chique Marketing</a>, <strong>Zack Ensign</strong> from <a href="http://www.zen-sign.com/" target="_blank">Zen-Sign Interactive</a>, and all the people at <a href="http://www.paperstreet.com/people.php" target="_blank">PaperStreet Web Design</a>.  Here&#8217;s to another good year in Web Design!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.roundrobinstudios.com/blog/roundrobin-studios-launches-its-2010-website/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

