<?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>The Portfolio of Justin Ruess</title>
	<atom:link href="http://www.justinr.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justinr.us</link>
	<description></description>
	<lastBuildDate>Tue, 26 Apr 2011 20:29:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Introduction to FBML &#8211; UPDATE</title>
		<link>http://www.justinr.us/2011/04/introduction-to-fbml-update/</link>
		<comments>http://www.justinr.us/2011/04/introduction-to-fbml-update/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 20:26:22 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=363</guid>
		<description><![CDATA[So, wouldn&#8217;t you know, not long after my last post [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.justinr.us/wp-content/uploads/2011/04/facebookFBML_redux.jpg" alt="Facebook FBML - Iframe Redux" title="Facebook FBML - Iframe Redux" width="610" height="200" class="alignnone size-full wp-image-259" /><br />
So, wouldn&#8217;t you know, not long after my <a href="http://www.justinr.us/2010/09/introduction-to-fbml/">last post</a> about Facebook FBML, Facebook comes out and depreciates it and starts wanting everyone to start using their own hosted HTML and iframes.</p>
<p>While this is very beneficial to people who want to do more in their pages, it does put a little bit of a crimp on past pages you may have already developed. First, lets talk about how to convert over to the new Facebook iframe way.<br />
<span id="more-363"></span></p>
<h2>Converting existing fbml into HTML</h2>
<p>The good news about this update is now you can use plain ole HTML now. So, if you had saved your past FBML as a text file or can copy it out of the application, lets make the first couple of changes:</p>
<h3>Declare a Doctype!</h3>
<p>First and foremost, you MUST declare a doctype now. Since it is not being rendered on Facebook&#8217;s page anymore, declare it in your new HTML file. A proper doctype will look something like this:</p>
<p><pre><code><br />
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;<br />
 &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />
</code></pre></p>
<p>Now, I chose XHTML Transitional here, but you can choose whatever you like. While we are at it here, go ahead and add the <html> and <body> tags to the beginning and end of the document as well.</p>
<h3>The Stylesheet</h3>
<p>If you depended on any of Facebook&#8217;s default styles for fonts, line-heights, padding, or margins, then the bad news is you will have to go through and declare them in your CSS file. </p>
<p>One good thing about this transition is that you no longer have to put a version number on your CSS file when you update it. No more senseless updates to a version number whenever you make a troubleshooting CSS change.</p>
<h3>iframe Scrolling</h3>
<p>So you design this awesome 520px wide creation, make the transition to iframes, and now you have scrollbars taking up 16px of your design and not showing all of the bottom until the user scrolls? Yeah, I had that too. Fortunately, it is an easy fix. First thing, lets get rid of the scrollbars by adding this:</p>
<p><pre><code><br />
body {overflow:hidden}<br />
</code></pre></p>
<p>But wait, now the user can&#8217;t even scroll to see the bottom of your page! Again, easy. For this, you need Facebook to resize the iframe to the height of your page. Just a little addition to your HTML should fix all of that:</p>
<p><pre><code><br />
&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt; <br />
&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt; <br />
&lt;script&gt; <br />
&nbsp;&nbsp;FB.init({<br />
&nbsp;&nbsp;&nbsp;&nbsp;appId&nbsp;&nbsp;: &#039;ADD APPID HERE&#039;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;status : true, <br />
&nbsp;&nbsp;&nbsp;&nbsp;cookie : true, <br />
&nbsp;&nbsp;&nbsp;&nbsp;xfbml&nbsp;&nbsp;: true <br />
&nbsp;&nbsp;});<br />
&lt;/script&gt; <br />
&lt;script&gt; <br />
window.fbAsyncInit = function() {<br />
&nbsp;&nbsp;FB.Canvas.setAutoResize();<br />
}<br />
&lt;/script&gt; <br />
</code></pre></p>
<p>Stepping through that code for a second, first, you are adding a div for Facebook to do it&#8217;s magic in (fb-root). Next, we are adding Facebook&#8217;s script to our page.  The first of the script tags is basically referencing your APPID (we will get to that in a minute) and the second one is telling Facebook to perform a resize on the iframe to fit your page. Now I am not a JS maven by any means, so if anyone reading this can condense it and get it to work, feel free to let me know in the comments.</p>
<h3>Other changes</h3>
<p>You no longer have to use the FBML code for analytics, flash, or javascript calls, which is a welcome addition. However, they have left out some of the documentation (or made it very, very hard to find) regarding how to migrate most of the calls from <a href="http://developers.facebook.com/docs/reference/fbml/">FBML</a>, like the Share Button. </p>
<h3>Setup</h3>
<p>So, you now have your HTML set up and on a server waiting for your fans on Facebook to see it. This is where the process gets a little more complicated than before.</p>
<p><b>Create an app</b></p>
<ol>
<li>Go to the <a href="http://www.facebook.com/developers/apps.php">App Developers page</a> and setup your new app</li>
<li>Your APP ID which you will need to put in the HTML for js calls is located on the App Developers page. You must complete this before it will properly show on your page</li>
<li>Back on the App developers page, in the Edit Screen, click on &#8220;Facebook Integration&#8221;</li>
<li>At the bottom where it says &#8220;Facebook Tabs,&#8221; choose iframe and put the URL of the uploaded html file in the &#8220;Tab URL&#8221; field</li>
<li>Click Save</li>
</ol>
<p><b>Add to your page</b></p>
<ol>
<li>Back on the App Developers page, click on &#8220;Application Profile Page&#8221;</li>
<li>Once there, click on  the &#8220;Add to My Page&#8221; on the left column. <em>Note: It is ok if you do not see the HTML before you click this</em></li>
<li>If you have more than one Page that you have created, it will prompt you to select which page you want to add it to</li>
<li>Go to your page to verify it is there</li>
</ol>
<p>And you have now added a new tab to your Facebook page using the new iframe system. </p>
<h3>Conclusion</h3>
<p>This may not cover everything with the new iframe tabs, but it should help you convert some of your old code to it and create new ones as well. While Facebook took away their FBML calls, this new system has a ton of potential for new designs. </p>
<p>Do you have any tips or tricks that you have found while coding for Facebook? Let us know in the comments.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2011%2F04%2Fintroduction-to-fbml-update%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2011/04/introduction-to-fbml-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Me</title>
		<link>http://www.justinr.us/2010/12/about-me/</link>
		<comments>http://www.justinr.us/2010/12/about-me/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 14:42:57 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=277</guid>
		<description><![CDATA[A designer at heart, I always strive to find the [...]]]></description>
			<content:encoded><![CDATA[<p>A designer at heart, I always strive to find the unique qualities in every project and showcase them for the world to see. I have worked on everything from interactive design to customized print campaigns for clients across the globe. </p>
<h3>Experience</h3>
<p>You want it, I have it. Freelancing for over 5 years, I also have 3 years of agency experience, 1 year of large corporation experience and created all media and marketing materials for a non-profit that went from five people to over 350 in a matter of 3 years. </p>
<p>I have worked for clients such as La-Z-Boy, DePuy (a Johnson &#038; Johnson company), Huntington Bank, US Bank, Root Learning and many others. </p>
<p>Want to know more about me? You can <a href="http://www.justinr.us/wp-content/uploads/2010/12/justinRuess_resume.pdf" target="_blank">download my resume</a> for a more detailed look, or contact me below for anything you need. </p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F12%2Fabout-me%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/12/about-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to FBML</title>
		<link>http://www.justinr.us/2010/09/introduction-to-fbml/</link>
		<comments>http://www.justinr.us/2010/09/introduction-to-fbml/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 19:01:02 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=257</guid>
		<description><![CDATA[The world of Facebook is upon us, and something that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.justinr.us/wp-content/uploads/2010/09/facebookFBML.jpg" alt="Facebook FBML" title="Facebook FBML" width="610" height="200" class="alignnone size-full wp-image-259" /><br />
The world of Facebook is upon us, and something that companies have to account for and engage with on a daily basis. With over 500,000,000 users, the platform is just way to large to ignore. Luckily, Facebook allows you to do this quite easily through their <strong>Fan Pages</strong>.</p>
<p>Now, there are several things you can do with this, from sending updates to all of the people that &#8220;Like&#8221; your company, creating promotions and give-a-ways for your customers, and creating personalized tabs that adhere to your company&#8217;s branding. Today, we will focus on the last of these, through FBML.<br />
<span id="more-257"></span></p>
<h2>Introduction to FBML</h2>
<p>FBML, or Facebook Markup Language, is very close to what we already know with basic HTML. It uses most of the same tags that we already know, so you can keep using your divs, spans and anchors, leaving the learning curve very minimal. You can also link external images and stylesheets, so your fan page can look exactly like you want it.</p>
<p>However, since you are on a third party site, there will alway be some restrictions that you must adhere to. First and foremost is the width. When styling, you <strong>must stay within 520px wide</strong>. You may make the page as tall as you need, but your width is key, as your site will have side bars on both sides.</p>
<p>The largest difference between HTML and FBML is a new tag to get yourself familiar with: fb.</p>
<h2>The &#8220;fb&#8221; tag</h2>
<p>Now there are many different uses for this, probably <a href="http://developers.facebook.com/docs/reference/fbml/">too many to list</a> in a simple &#8220;Introduction&#8221; post. Because of that, I will go ahead and go through some of the more common and useful tags for normal use.</p>
<p><img src="http://www.justinr.us/wp-content/uploads/2010/09/fbShare.jpg" alt="Facebook Share Button " title="Facebook Share Button " width="610" height="200" class="alignnone size-full wp-image-264" /></p>
<h3>The Facebook Share Button</h3>
<p><pre><code><br />
&lt;fb:share-button class=&quot;meta&quot;&gt;<br />
&lt;meta name=&quot;medium&quot; content=&quot;mult&quot;/&gt;<br />
&lt;meta name=&quot;title&quot; content=&quot;Test Fan Page&quot;/&gt;<br />
&lt;meta name=&quot;description&quot; content=&quot;description of fan page&quot;/&gt;<br />
&lt;link rel=&quot;image_src&quot; href=&quot;&quot; /&gt;<br />
&lt;link rel=&quot;target_url&quot; href=&quot;http://facebook.com/TestLink&quot;/&gt;<br />
&lt;/fb:share-button&gt;<br />
</code></pre></p>
<p>The <strong>fb:share-button</strong> is probably one of the more useful tags for viral marketing. While you don&#8217;t get control over the style of the button, you get quite a bit of control over what actually happens after a user clicks on it. </p>
<p>The purpose of this button is to share a specific page or website with the user&#8217;s friends on their wall. Now let&#8217;s look at what you can actually inject into this code. To edit these, you need to edit the meta information:</p>
<p><strong>meta name=&#8221;title&#8221; content=&#8221;Test Fan Page&#8221;</strong><br />
This is the title that is shown when an item is shared. You can name it anything relative to the link you are sharing.</p>
<p><strong>meta name=&#8221;description&#8221; content=&#8221;description of fan page&#8221;</strong><br />
This is a brief description of the link. It is best to keep this short and sweet, but still have enough juice in it to draw a person to click on it.</p>
<p><strong>link rel=&#8221;image_src&#8221; href=&#8221;"</strong><br />
This is a thumbnail that you can share with it. If you are selling a product, you might want to put that here. You can also put a logo, screenshot of your page, or whatever you really want to here, just remember, people are going to see it pretty small.</p>
<p><strong>link rel=&#8221;target_url&#8221; href=&#8221;http://facebook.com/TestLink&#8221;</strong><br />
This is the most important part of the share button. It inserts the link you want people to go to when they click on the wall post.</p>
<h3>The Reference Tag</h3>
<p><pre><code><br />
&lt;fb:ref url=&quot;http://samplepage.com&quot;/&gt;<br />
</code></pre></p>
<p>The <strong>fb:ref</strong> fetches a page or content from an external source and renders it on your FBML tab. This can be useful for as itt lets you pull in feeds from external sources. Say you want a jobs tab highlighting the jobs you have open at your company. If you already have them posted on a job board, you would be able to pull in the feed from that job board into Facebook with having to post it on both locations.</p>
<h3>Google Analytics</h3>
<p><pre><code><br />
&lt;fb:google-analytics uacct=&quot;UA-9999999-99&quot; /&gt;<br />
</code></pre></p>
<p>Yes, that Google Analytics. The behemoth of tracking tools is available on your facebook page so that you can track the info about your user. And all you need to do is put your account code in the tag above.</p>
<h3>Facebook Member only Content</h3>
<p><pre><code><br />
&lt;fb:visible-to-connection&gt;Wow! We like you too!!!&lt;/fb:visible-to-connection&gt;<br />
</code></pre></p>
<p>There are times where you might want to promote items to Members Only. This might be for a contest that requires that people &#8220;Like&#8221; you or for polls, images, etc&#8230; Luckily, this is really easy to accomplish by putting the Members only content into the <strong>fb:visible-to-connection</strong> tag.</p>
<h2>Style it Up</h2>
<p>Since Facebook lets you import CSS files, styling is identical to what you are already used to. Here are a few tips so that you do not get tripped up:</p>
<p><img src="http://www.justinr.us/wp-content/uploads/2010/09/ssVersioning.jpg" alt="Stylesheet Versioning on Facebook" title="Stylesheet Versioning on Facebook" width="610" height="200" class="alignnone size-full wp-image-263" /></p>
<h3>CSS Versioning</h3>
<p>When linking to an external stylesheet, Facebook requires that you version it. It really is quite simple to do:</p>
<p><pre><code><br />
&lt;link href=&quot;http://yoursite.com/style.css?v=1.0&quot; type=&quot;text/css&quot; rel=&quot;stylesheet&quot; /&gt;<br />
</code></pre></p>
<p>As you can see, linking to the stylesheet is identical, all you need to do it put the <strong>?v=1.0</strong> after the url. Each time you update the CSS file, you MUST update the version for the change to appear.</p>
<h3>Reset? Don&#8217;t need it</h3>
<p>You do not need to reset default styles as you normally would when coding a site. Facebook already has it in place so you don&#8217;t even have to bother with it.</p>
<h2>Wrap up</h2>
<p>Now there are many more tags and ways to get your users to engage with your brand. We will explore more of the tags in a later post, but this should get you pointed in the right direction. </p>
<p>Do you have any tips or tricks that you have found while coding for Facebook? Let us know in the comments.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F09%2Fintroduction-to-fbml%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/09/introduction-to-fbml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 RSS Icon</title>
		<link>http://www.justinr.us/2010/07/css3-rss-icon/</link>
		<comments>http://www.justinr.us/2010/07/css3-rss-icon/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 20:16:44 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=245</guid>
		<description><![CDATA[Well, here we are for week 2 of the CSS3 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.justinr.us/2010/07/css3-rss-icon"><img src="http://www.justinr.us/wp-content/uploads/2010/07/css3IconsRSS.png" alt="CSS3 RSS Icon" title="css3IconsRSS" width="610" height="200" class="alignnone size-full wp-image-244" /></a></p>
<p>Well, here we are for week 2 of the CSS3 Icon experiment. This time we will tackle the RSS icon, and as always, not use any images. For this implementation, we are going to keep the mono-chrome look that we did with the <a href="http://www.justinr.us/?p=223">Search Icon</a>. </p>
<p>Let&#8217;s jump right in:</p>
<p><span id="more-245"></span></p>
<p>Again, I am targeting CSS3 here, so it will not work in all browsers. In addition, I am not going to delve too deep into the reasoning here, but I am only showing code that works great in Webkit-based browsers. </p>
<h2>The CSS3 RSS Icon</h2>
<p>To start, let&#8217;s create the HTML:</p>
<p><pre><pre><br />
&lt;div class=&quot;rssBox&quot;&gt;<br />
&nbsp;&nbsp;&lt;div class=&quot;topRSSLine&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&lt;div class=&quot;bottomRSSLine&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;RSScircle&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;/div&gt;<br />
</pre></pre></p>
<p>In this, I have 4 divs. The outer div, rssBox, is like a wrapper and contains all the pieces. The other 3 divs are the 3 separate pieces of the icon, the top line, bottom line, and circle.</p>
<p>Now, let&#8217;s try looking at the CSS. We will start with the main wrapper, rssBox.</p>
<p><pre><pre><br />
.rssBox {<br />
position:relative;<br />
height:26px;<br />
width:26px;<br />
}<br />
</pre></pre></p>
<p>This is very basic. I am declaring the positioning, so I can make the other items inside positioned relative to this, and declaring the width and height. Declaring the width and height will be important for a future lesson, but really doesn&#8217;t do much for us now besides let us know how large our icon is.</p>
<p>Next, let&#8217;s take a look at the lines:</p>
<p><pre><pre><br />
.topRSSLine {<br />
height:36px;<br />
width:36px;<br />
border-right:5px solid #000;&nbsp;&nbsp;<br />
border-radius:18px;<br />
-webkit-transform: rotate(-45deg);<br />
position:absolute;<br />
top:5px;<br />
left:-17px;<br />
<br />
}<br />
&nbsp;&nbsp;<br />
.bottomRSSLine {<br />
height:20px;<br />
width:20px;<br />
border-right:5px solid #000;&nbsp;&nbsp;<br />
border-radius:10px;<br />
-webkit-transform: rotate(-45deg);<br />
position:absolute;<br />
top:13px;<br />
left:-9px;<br />
}<br />
</pre></pre></p>
<p>The code for the 2 of these is almost identical, with just the sizing and positioning changing slightly. Starting at the top, we declare the height and width of the div. Next, we declare the border for the right side ONLY. This is very important, as the RSS Icon is essentially a quarter circle. We can then declare the border radius for the div, making it half of the height and width for the circular look.</p>
<p>At this point, the quarter circle is pointing to the right. Using the &#8220;transform&#8221; selector in CSS3, we can rotate it back 45 degrees to it&#8217;s proper place. Since this is not supported fully, you have to use your <a href="http://google.com/chrome">favorite browser</a>&#8216;s extension for this (ie. -webkit-).</p>
<p>The last 3 lines in each are positioning the element in the correct placement.</p>
<p>Now, the circle:</p>
<p><pre><pre><br />
.RSScircle {<br />
height:0;<br />
width:0;<br />
border:2px solid #000;<br />
border-radius:3px;<br />
position:absolute;<br />
top:19px;<br />
left:3px;<br />
}<br />
</pre></pre></p>
<p>This code is a lot like the ones above, except it is using the border on all sides to complete the circle. It then positioning it where it needs to be to complete the icon.</p>
<p>Now, that&#8217;s it. you have a simple, mono-chrome RSS icon built completely using CSS3.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F07%2Fcss3-rss-icon%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/07/css3-rss-icon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Who Needs Images? The CSS3 Search Icon</title>
		<link>http://www.justinr.us/2010/07/who-needs-images-the-css3-search-icon/</link>
		<comments>http://www.justinr.us/2010/07/who-needs-images-the-css3-search-icon/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 10:54:35 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=223</guid>
		<description><![CDATA[Well, it has been very quiet around these parts lately. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.justinr.us/2010/07/who-needs-imag…s3-search-icon"><img src="http://www.justinr.us/wp-content/uploads/2010/07/css3Icons.png" alt="" title="CSS3 Icons" width="610" height="200" class="alignnone size-full wp-image-238" /></a></p>
<p>Well, it has been very quiet around these parts lately. No, I have not given up on the blog already, I have just had to focus on a slew of other items, you know PAYING gigs&#8230; Gotta pay the bills after all.</p>
<p>Anyways, I will start a new weekly segment that outlines a small piece of code that I am working on that should come in handy for the future. This week will focus on icons without images. Since this can go quite a ways, it may take a few times to get this done in it&#8217;s entirety.</p>
<p><span id="more-223"></span></p>
<p>For this example, I will be using CSS3, as I am targeting this at a WebKit browser (the iPad).</p>
<h2>The CSS3 Search Icon</h2>
<p>The purpose of this is to create an icon that looks like a simple magnifying glass using CSS3. To start, I will create the HTML:</p>
<p><pre><pre><br />
&lt;div class=&quot;iconHldr&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;searchCircle&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;searchHandle&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;/div&gt;<br />
</pre></pre></p>
<p>I have formatted the code into 3 divs, one that acts as a holder, one for the circle and the other for the handle. Now for the CSS Magic:</p>
<p><pre><pre><br />
.iconHldr {<br />
position:relative;<br />
}<br />
</pre></pre></p>
<p>First, I declared the position on the iconHldr so that we can when we declare it on the inner divs without any problems. Next, the circle:</p>
<p><pre><pre><br />
.searchCircle {<br />
border:2px solid #000;<br />
height:12px;<br />
width:12px;<br />
display:block;<br />
-webkit-border-radius: 6px;<br />
}<br />
</pre></pre></p>
<p>This is pretty basic code, a 12px high and wide div with a 2px solid black border. The trick to make it round comes from the &#8220;-webkit-border-radius: 6px;&#8221;.  I am using 6px because it is 1/2 the width of the div (a <i>radius</i> is half the width of a circle). Like I mentioned earlier, I am specifically aiming at the iPad for this, so all I need is WebKit, and this transforms my square div into something with rounded corners. Since I am using the same border-radius as I am the height and width, it makes a circle. Now the handle:</p>
<p><pre><pre><br />
.searchHandle {<br />
display:block;<br />
background:#000;<br />
height:3px;<br />
width:7px;<br />
-webkit-transform:rotate(53deg);<br />
position:absolute;<br />
top:15px;<br />
left:12px;<br />
}<br />
</pre></pre></p>
<p>Again, a lot of this is pretty basic until you get to &#8220;-webkit-transform:rotate(53deg);&#8221; This makes the div that we created rotate to 53 degrees. We then move it down to the lower right hand side of the circle with the top and left positioning to get the final result, shown in the image at the top of the page.</p>
<p>I can&#8217;t wait for more browsers to fully support these new features (or the old browsers to get outdated enough that we don&#8217;t need to worry about them anymore). This is just the tip of the iceberg on what we can do with CSS3.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F07%2Fwho-needs-images-the-css3-search-icon%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/07/who-needs-images-the-css3-search-icon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cha-cha-changin&#8217;</title>
		<link>http://www.justinr.us/2010/06/cha-cha-changin/</link>
		<comments>http://www.justinr.us/2010/06/cha-cha-changin/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 00:56:17 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/2010/06/cha-cha-changin/</guid>
		<description><![CDATA[Life is funny sometimes. After nearly 3 years of working [...]]]></description>
			<content:encoded><![CDATA[<p>Life is funny sometimes. </p>
<p>After nearly 3 years of working as an Interactive Designer at a well established marketing firm in Toledo, I will be moving on to the next step in my career. </p>
<p>Initially coming to Monroe, MI to help start a church, I found work about 45 minutes away doing what I love: web design.  Hart Associates took me in and allowed me to grow and flourish while keeping me well grounded in the basics of design and UX. I am extremely grateful for the opportunity that they provided for me and will miss the team there greatly. </p>
<p>I was also able to greatly help out the church, as you can see from quite a few of the works in my portfolio. Launching Elevate Church will be an experience I will never forget. From 5 people meeting in a small townhouse to a Launch service of 364 people, and continued growth throughout the first year, it was truly remarkable. I was lucky enough to lead the initial media team and see the countless stories of life changed in Monroe. Elevate will forever be in my heart. </p>
<p>But life changes, and we are changing with it. Tomorrow will be my last day at Hart, as I am packing up and moving my family this weekend to Orlando. I have accepted a great job offer at FIS, a branch of Fidelity, and will be working as their User Experience Engineer. I am very excited about the possibilities that this offers and know that it is the right step to take in our journey. </p>
<p>We appreciate all your prayers as we move down there. If any of you ever are visiting Orlando, feel free to get ahold of us and we can meet up for dinner or golf, or both. </p>
<p>The only thing I know for sure is this: I will be a lot more tan next time you see me!</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F06%2Fcha-cha-changin%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/06/cha-cha-changin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 design sites to fuel your creative fire.</title>
		<link>http://www.justinr.us/2010/03/10-design-sites-to-fuel-your-creative-fire/</link>
		<comments>http://www.justinr.us/2010/03/10-design-sites-to-fuel-your-creative-fire/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:13:28 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=193</guid>
		<description><![CDATA[As designers, we always have to stay on the cutting [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.justinr.us/2010/03/10-design-sites-to-fuel-your-creative-fire"><img src="http://www.justinr.us/wp-content/uploads/2010/03/creativefire.jpg" alt="" title="creativefire" width="610" height="200" class="alignnone size-full wp-image-200" /></a><br />
As designers, we always have to stay on the cutting edge of what the next design trend is, and even try to beat that trend when possible. But we all know that there are days, sometimes weeks, that we run on empty. It just seems like everything we come up with could have been done by a first grader in Microsoft Paint.</p>
<p>Okay, maybe it&#8217;s not that bad, but designer&#8217;s cramp definitely hits us all. When I start to see the first glimpse of it coming, I try to head it off by going to some of the creative sources I know. Here are 15 that have saved me from cramping up for prolonged periods of time:<br />
<span id="more-193"></span><br />
<a href="http://abduzeedo.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/abduzeedo.jpg" alt="" title="abduzeedo" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://abduzeedo.com/">Abduzeedo</a></h2>
<p>Abduzeedo is one of the premiere blogs for creatives known to man. From typography inspiration and freebies to Photoshop and GIMP tutorials, the group of writers/designers put everything in your hands to break your slump and get back on track.</p>
<hr />
<a href="http://unmatchedstyle.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/unmatchedstyle.jpg" alt="" title="unmatchedstyle.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://unmatchedstyle.com/">Unmatched Style</a></h2>
<p>As a web designer, I have not found a better CSS gallery to get inspired from. They focus on not only beauty, but usability on this prestigious site. It is very funny to even look back and see what we thought was good in 2004&#8230; Scary that some of those sites have not changed since then though.</p>
<hr />
<a href="http://deviantart.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/deviantart.jpg" alt="" title="deviantart.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://www.deviantart.com/">Deviant Art</a></h2>
<p>Deviant Art is a little different from the other, as you can go for hours and find nothing but junk in it. However, the community on that site uploads some good designs if you know how to search right for them.</p>
<hr />
<a href="http://webdesignerdepot.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/webdesignerdepot.jpg" alt="" title="webdesignerdepot.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://www.webdesignerdepot.com/">Web Designer Depot</a></h2>
<p>Web Designer Depot also gives away some freebies, but I think the best part about this site are the <a href="http://www.webdesignerdepot.com/category/inspiration/">inspiration posts</a>.</p>
<hr />
<a href="http://noupe.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/noupe.jpg" alt="" title="noupe.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://www.noupe.com/">Noupe</a></h2>
<p>Noupe was recently purchased by <a href="http://smashingmagazine.com">Smashing Magazine</a>, and for a good reason. You can&#8217;t go more than 2 posts before breaking your slump.</p>
<hr />
<a href="http://psd.tutsplus.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/psdtuts.jpg" alt="" title="psdtuts.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://psd.tutsplus.com/">PSDtuts</a></h2>
<p>PSDtuts is another favorite, always posting cool designs, then shows you how to create each one. Even if you don&#8217;t work in Photoshop, their <a href="http://tutsplus.com/">network</a> has something for just about everyone.</p>
<hr />
<a href="http://creativemyk.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/creativemyk.jpg" alt="" title="creativemyk.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://creativemyk.com">CreativeMYK</a></h2>
<p>Known more in the church community, CreativeMYK allows churched to share their series designs with each other. </p>
<hr />
<a href="http://thedieline.com/blog/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/thedieline.jpg" alt="" title="thedieline.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://www.thedieline.com/blog/">TheDieline.com</a></h2>
<p>Going away from the digital realm, TheDieline.com focuses solely on packaging. </p>
<hr />
<a href="http://logopond.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/logopond.jpg" alt="" title="logopond.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://logopond.com">LogoPond</a></h2>
<p>LogoPond is one of the best sites for identity branding out there, from modern and hip to classic and charming, all the new logos from around the world get uploaded there first.</p>
<hr />
<a href="http://speckyboy.com/"><img src="http://www.justinr.us/wp-content/uploads/2010/03/speckyboy.jpg" alt="" title="speckyboy.com" width="610" height="350" class="alignnone size-full wp-image-204" /></a></p>
<h2><a href="http://speckyboy.com/">Speckyboy</a></h2>
<p>Another member of the Smashing network, Speckyboy puts a lot of inspiration out in Photoshop and webdesign. </p>
<hr />
<img src="http://www.justinr.us/wp-content/uploads/2010/03/nature.jpg" alt="" title="Go Outside!" width="610" height="350" class="alignnone size-full wp-image-204" /></p>
<h2>Bonus: Go Outside</h2>
<p>The best thing when trying to get the creative bug back is to go and get inspired by the creation around you: Nature. Take your moleskin (we all know you have one) and a pencil and draw for a few hours. Go to a place where you won&#8217;t be interrupted by your phone or have you mind on your email. Make it a weekend if you have to, but take time to relax for a little bit, get in touch with Mother Nature and you will see creative life flowing like it never has before.</p>
<hr />
<h2>The Final Word:</h2>
<p>Do you have any sites that you go to for inspiration? Share them below. We all know our sites can get a little boring after a while too.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F03%2F10-design-sites-to-fuel-your-creative-fire%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/03/10-design-sites-to-fuel-your-creative-fire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tools for Web Designers</title>
		<link>http://www.justinr.us/2010/02/daily-tools-for-web-designers/</link>
		<comments>http://www.justinr.us/2010/02/daily-tools-for-web-designers/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 05:45:59 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=166</guid>
		<description><![CDATA[Now we have all seen our fare share of posts [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.justinr.us/wp-content/uploads/2010/02/dailytools.jpg" alt="" title="Daily Tools for Web Designers" width="610" height="200" class="alignnone size-full wp-image-178" /></p>
<p>Now we have all seen our fare share of posts on &#8220;What tools a designer should use.&#8221; This is not one of them. In fact, this is more about what I use on daily basis to help with my productivity. Hopefully it will open up some new options that you may have never known about before.</p>
<p>Lets start with the obvious:<br />
<span id="more-166"></span></p>
<h2><a href="http://firefox.com">Firefox</a></h2>
<p>Now let me actually put out this disclaimer: I do NOT browse the internet with Firefox. It is a very good browser, and I do recommend it to people, but for my every day browsing, I use <a href="http://google.com/chrome">Chrome</a>. It works much faster for that purpose.</p>
<p>However, I design and develop everything in Firefox. The plugin repository and community is HUGE and makes life easier and more efficient. Speaking of plugins:</p>
<h3>Firefox Plugins:</h3>
<p><a href="http://getfirebug.com/">Firebug (duh)</a><br />
From editing CSS and HTML to Javascript debugging, if this tool is not a part of your daily use, you need it to be.</p>
<p><a href="http://developer.yahoo.com/yslow/">YSlow</a><br />
YSlow is actually a plugin for Firebug. It extends the capabilities, adding tabs so you can see why a certain page is loading slow. It also brings in my favorite image compression: <a href="http://developer.yahoo.com/yslow/smushit/index.html">Smush.it™</a>. That allows you to make sure you have the most compressed images you possible can for your site, without losing quality.</p>
<p><a href="http://www.kevinfreitas.net/extensions/measureit/">MeasureIt</a><br />
MeasureIt is an accurate ruler that lets you measure anything on your webpage. It embeds itself on the bottom toolbar for easy access at any given time. I would not suggest using this for all your measurements, but it can give you a good idea at how much space you have to work with.</p>
<p><a href="http://fireftp.mozdev.org/">FireFTP</a><br />
FireFTP is an in-browser FTP Client. It supports drag and drop functionality, saves all FTP info so you can revisit it later. Did I mention you don&#8217;t have to open another application because it is in-browser. Yeah.</p>
<p><a href="http://www.capturefox.com/">CaptureFox</a><br />
Ok, I don&#8217;t use this one every day, but it comes in very handy when you need to do a quick screen recording for a demo or tutorial. </p>
<p><a href="http://chrispederick.com/work/web-developer/">Web Developer Toolbar</a><br />
This one is useful, but not often on the front of my mind. It has various functions I use daily, like disabling cookies and cashe, javascript, etc&#8230; </p>
<p><a href="http://chrispederick.com/work/user-agent-switcher/">User Agent Switcher</a><br />
This one is especially useful when switching between mobile design and desktop design. A must have if you do both.</p>
<h2>Photoshop/Fireworks/Illustrator</h2>
<p>I actually use all 3 of these from time to time, with most of my time being spent in Photoshop. If I need a vector graphic when designing a site in Photoshop, I will use Illustrator. If I am designing the site in Fireworks, I just use that program alone. I am extremely more comfortable in Photoshop, so that is where I focus the most of my energy right now.</p>
<h2><a href="http://kuler.adobe.com/">Kuler</a></h2>
<p>Since we are on the designing topic here, I would be remiss to leave out Kuler. You can find and create color schemes with this handy tool. The trick is to sticking with the palette once you do the design.</p>
<h2>Dreamweaver CS4</h2>
<p>The steps from CS3 to CS4 in Dreamweaver have been the most drastic that I have seen in a while. CS4 brings in the live preview and actually opens all linked files at once, which cuts down on time spent searching, opening and editing. CS4 has really cut down on the bottom line.</p>
<h2>TextEdit</h2>
<p>Yes &#8211; the one that comes standard on a Mac. Why? It is simple to use, no bloat and quick. When I have a quick HTML, CSS or JS edit that I need to make and no program is already open, why wait for it when TextEdit can do just as good of a job in less time. </p>
<h2>Boot Camp</h2>
<p>Yes, I know Parallels is out and can do the same thing except without the reboot, but I just can not justify myself spending more money on stuff for Microsoft. Since Boot Camp comes with Mac, it is easy enough for me to use only that to make sure my sites look fine in that great, never-dying Internet Explorer.</p>
<h2>The Final Word</h2>
<p>So there you have it; tools I use everyday. Is there something you know that could make my life easier? Did I make any of yours a little better? Let me know in the comments below.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F02%2Fdaily-tools-for-web-designers%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/02/daily-tools-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>College Websites &#8211; Big 12</title>
		<link>http://www.justinr.us/2010/02/college-websites-big-12-week-2/</link>
		<comments>http://www.justinr.us/2010/02/college-websites-big-12-week-2/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 01:00:07 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=155</guid>
		<description><![CDATA[This post continues a series where we will look at [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/uploads/2010/02/big12S.jpg" alt="Big 12 South"><br />
This post continues a series where we will look at the websites of colleges throughout the nation, broken down by football conferences.</p>
<p>In this post, we look at the Big 12 (South) and pick a champion:<br />
<span id="more-155"></span></p>
<h2>Baylor University</h2>
<p><a href="http://www.baylor.edu/"><img src="/wp-content/uploads/2010/02/baylor_1.jpg" alt="Baylor University Homepage" /></a><br />
<a href="http://www.baylor.edu/adm/"><img src="/wp-content/uploads/2010/02/baylor_2.jpg" alt="Baylor University Subpage" /></a></p>
<p>Baylor makes it easy to navigate through and get to what I want in a hurry. Unfortunately, when clicking through the navigation, the first few links take me to sites that look totally disconnected from the original site I was on. Consistency comes when you get lower in the navigation, but when the focus on the top of the navigation, users probably would not even know they are staying within Baylor&#8217;s site.</p>
<p>The design is pretty standard. Nothing to brag about on Baylor&#8217;s side here. It uses simple gradients, but lacks true depth in any design element.</p>
<p><b>Verdict:</b> While easy to navigate, I would at least suggest a minor face-lift, unifying the look on all pages while adding a bit of depth through the use of some textures and shading.</p>
<hr />
<h2>University of Oklahoma</h2>
<p><a href="http://www.ou.edu/web.html"><img src="/wp-content/uploads/2010/02/ou_1.jpg" alt="University of Oklahoma Homepage" /></a><br />
<a href="http://www.ou.edu/go2/home/scholarships.html"><img src="/wp-content/uploads/2010/02/ou_2.jpg" alt="University of Oklahoma Subpage" /></a></p>
<p>Oklahoma does a great job taming the red. It is there showing the school spirit, but glaring and taking your attention away from the content of the site.</p>
<p>However, it have a few of the same faults that Baylor did above. Consistency throughout the site is non-existent, going from a fixed width, centered site, to a full width site, to a left aligned site at times, the inconsistency can really confuse users and give an overall broken view of the site.</p>
<p><b>Verdict:</b> I like where they are headed with the design elements on the homepage, and it actually carries through to some of the sub pages. If they unified that look, this would be a top-notch college site.</p>
<hr />
<h2>Oklahoma State University</h2>
<p><a href="http://osu.okstate.edu/welcome/"><img src="/wp-content/uploads/2010/02/okst_1.jpg" alt="Oklahoma State University Homepage" /></a><br />
<a href="http://admissions.okstate.edu/"><img src="/wp-content/uploads/2010/02/okst_2.jpg" alt="Oklahoma State University Subpage" /></a></p>
<p>Oklahoma State has quite a few things right from the beginning. The drop down menus are mini site maps, allowing the user to get to virtually any page whenever they want. The large image slider on the homepage provides a nice look into the life at OSU.</p>
<p>Design wise, they provide a nice depth through the use of textures, consistency through all of it&#8217;s pages, and nice, large images to lead into the content.</p>
<p><b>Verdict:</b> This site looks like it was recently updated. It is well done and consistent. </p>
<hr />
<h2>Texas A&#038;M</h2>
<p><a href="http://www.tamu.edu/"><img src="/wp-content/uploads/2010/02/tamu_1.jpg" alt="Texas A&#038;M Homepage" /></a><br />
<a href="http://www.tamu.edu/home/prospectstdts/"><img src="/wp-content/uploads/2010/02/tamu_2.jpg" alt="Texas A&#038;M Subpage" /></a></p>
<p>Simplicity is key with the Texas A&#038;M site, and it works very well for them. They create nice depth from the background by using different shades of the color below the main content area.</p>
<p>The lack of drop down menus creates an extra click for the user to get exactly where they want, but the landing pages create a nice portal to all the pages underneath.</p>
<p><b>Verdict:</b> The site is designed well graphically, and is very consistent throughout. I would jazz up the menus a bit to provide easier access to the subpages.</p>
<hr />
<h2>Texas Tech University</h2>
<p><a href="http://www.ttu.edu/"><img src="/wp-content/uploads/2010/02/ttu_1.jpg" alt="Texas Tech University Homepage" /></a><br />
<a href="http://www.ttu.edu/admissions/"><img src="/wp-content/uploads/2010/02/ttu_2.jpg" alt="Texas Tech University Subpage" /></a></p>
<p>The Texas Tech site is easy to navigate around, and the side navigation always lets the user know what is going to happen. The use of icons for pages that will open in new windows helps the user understand why the design is not the same from page to page.</p>
<p>That being said, the red draws attention away from the content on just about every page. A secondary color may be the best thing to go with for big colored areas, and leave the red to accent colors.</p>
<p><b>Verdict:</b> Even though the site is well designed, the color scheme needs to be adjusted to keep the main focus on the area that need it the most.</p>
<hr />
<h2>University of Texas</h2>
<p><a href="http://www.utexas.edu/"><img src="/wp-content/uploads/2010/02/utexas_1.jpg" alt="University of Texas Homepage" /></a><br />
<a href="http://www.utexas.edu/student/admissions/"><img src="/wp-content/uploads/2010/02/utexas_2.jpg" alt="University of Texas Subpage" /></a></p>
<p>I almost don&#8217;t know where to start on this one. I don&#8217;t know how a site can be so boring, yet so busy at the same time. I don&#8217;t even know where I am supposed to look on the homepage, or what the best way for me to navigate around the site would be.</p>
<p>The site goes from a centered 3 column layout, to a left aligned 1 column site. Consistency is low throughout rest of the pages.</p>
<p><b>Verdict:</b> A makeover is definitely needed for the University of Texas. A total redesign from the bottom up would help attract students and allow people to find information about them easier.</p>
<hr />
<h2>Conference Champion</h2>
<p><img src="http://justinr.us/wp-content/uploads/2010/02/osuLogo.png" class="champLogo" alt="Oklahoma State University" /><br />
Oklahoma State University pulled away with the win in this conference, as it leveraged consistency, depth of design and modern functionality. It almost wasn&#8217;t even a contest, as it was one of the only consistent sites here.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F02%2Fcollege-websites-big-12-week-2%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/02/college-websites-big-12-week-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>College Websites &#8211; Big 12</title>
		<link>http://www.justinr.us/2010/02/college-websites-big-12-week-1/</link>
		<comments>http://www.justinr.us/2010/02/college-websites-big-12-week-1/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:36:20 +0000</pubDate>
		<dc:creator>jruess</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.justinr.us/?p=141</guid>
		<description><![CDATA[In our new series, we will look at the websites [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://justinr.us/wp-content/uploads/2010/02/big12N.jpg" alt="Big 12 North"><br />
In our new series, we will look at the websites of colleges throughout the nation, broken down by football conferences.</p>
<p>To start us off right, we will go with the Big 12 (North). Let&#8217;s see what they had to offer:<br />
<span id="more-141"></span></p>
<h2>University of Colorado</h2>
<p><a href="http://www.colorado.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/univColorado_1.jpg" alt="University of Colorado Homepage" /></a><br />
<a href="http://www.colorado.edu/prospective/"><img src="http://justinr.us/wp-content/uploads/2010/02/univColorado_2.jpg" alt="University of Colorado Subpage" /></a></p>
<p>As far as usability goes, the University of Colorado website is pretty good. The navigation is clean and I can easily get wherever I want to in the site. </p>
<p>The overall look is a bit dated, probably around 3 years old. They have some beautiful photos throughout the site and showing them off a little bit more would not hurt, but their main focus of content always has to stay their main staple. The odd search area which seems to overlap just about everything also stands out like a sore thumb on all pages.</p>
<p><b>Verdict:</b> This site could use a makeover to focus more on what would attract a prospective student into attending. </p>
<hr />
<h2>Iowa State University</h2>
<p><a href="http://www.iastate.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/iowast_1.jpg" alt="Iowa State Homepage" /></a><br />
<a href="http://www.admissions.iastate.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/iowast_2.jpg" alt="Iowa State Subpage" /></a></p>
<p>I understand that there is a lot of information that universities want to get out, but this site just seems confusing with a few different types of navigation. The index at the top just seems out of place, especially with the search right within reach.</p>
<p>The visuals on this site are extremely underwhelming. Adding a bit of depth to the design by some simple gradients would make a world of difference on this site.</p>
<p><b>Verdict:</b> Redesigning this site would help out both the usability and visual stimulation that this site lacks.</p>
<hr />
<h2>Kansas University</h2>
<p><a href="http://www.ku.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/kansas_1.jpg" alt="Kansas Homepage" /></a><br />
<a href="http://www.ku.edu/admissions/"><img src="http://justinr.us/wp-content/uploads/2010/02/kansas_2.jpg" alt="Kansas Subpage" /></a></p>
<p>This site demonstrates how the A-Z index, search and normal navigation can co-exist in a logical, usable way. This site was easy to navigate and each page seemed to &#8220;belong&#8221; within the template of the rest of the site. Some of the icons are a little out of date, but overall, this design is solid and usable, gently directing the user where they need to click next.</p>
<p><b>Verdict:</b> This site does not need a major redesign, but freshening up some of the iconography would not be a bad idea.</p>
<hr />
<h2>Kansas State University</h2>
<p><a href="http://k-state.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/kansasst_1.jpg" alt="Kansas State Homepage" /></a><br />
<a href="http://consider.k-state.edu/admissions/"><img src="http://justinr.us/wp-content/uploads/2010/02/kansasst_2.jpg" alt="Kansas State Subpage" /></a></p>
<p>Even though there is not a lot of information on the homepage, it seems overly busy and I am not sure where to look. This could be fixed by a simple color change: using purple as an accent color instead of dominating the page. </p>
<p>The layout makes the copy easy to read through, but need to do a better job at guiding the user to the intended destination.</p>
<p><b>Verdict:</b> A full-blown redesign is not necessary, but changing the color scheme and a few other minor tweaks would make this Kansas State stand out from the crowd a bit more.</p>
<hr />
<h2>University of Missouri</h2>
<p><a href="http://www.missouri.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/mizzou_1.jpg" alt="Mizzou Homepage" /></a><br />
<a href="http://www.missouri.edu/admissions/"><img src="http://justinr.us/wp-content/uploads/2010/02/mizzou_2.jpg" alt="Mizzou Subpage" /></a></p>
<p>The University of Missouri does a good job at presenting the massive amount of information, but it can get confusing with the links scattered throughout the content so much. Separating them outside of the content and putting calls to action throughout the content would help guide the user down the path they want.</p>
<p>The look is very clean, but very boring. Using larger images throughout the site could help with spruce things up a bit.</p>
<p><strong>Verdict:</strong> A redesign would be a good move by Missouri. If it is kept it clean and made a bit more modern, it would really benefit the University.</p>
<hr />
<h2>University of Nebraska</h2>
<p><a href="http://www.unl.edu/"><img src="http://justinr.us/wp-content/uploads/2010/02/nebraska_1.jpg" alt="Nebraska Homepage" /></a><br />
<a href="http://www.unl.edu/ucomm/prospective/"><img src="http://justinr.us/wp-content/uploads/2010/02/nebraska_2.jpg" alt="Nebraska Subpage" /></a></p>
<p>This design utilizes the red to its advantage, making it more of an accent color that does not overtake the design. The clean navigation and large imagery help show that Nebraska is committed to their students and faculty.</p>
<p><strong>Verdict:</strong> This site does not need to be redone right now. Possible improvements could be made in the footer area to add the news or events or even a quick link section.</p>
<hr />
<h2>Conference Champion</h2>
<p><img src="http://justinr.us/wp-content/uploads/2010/02/nebLogo.png" class="champLogo" alt="University of Nebraska" /><br />
In a dog fight between Nebraska and Kansas, Nebraska pulls out a nail-biter on some of their special features, like <a href="http://planetred.unl.edu/?utm_source=internal&#038;utm_medium=external-page&#038;utm_term=&#038;utm_content=posterbox&#038;utm_campaign=pyotm">Planet Red</a>.</p>
<p>Overall, I was mainly disappointed in the lack of depth on most of the sites in this conference, and they all looked like they were built 2.5-5 years ago. For institutions that are teaching the next generation how to stay ahead of the game, they have dropped the ball and fallen behind on their websites.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.justinr.us%2F2010%2F02%2Fcollege-websites-big-12-week-1%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px;margin-top:5px;"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.justinr.us/2010/02/college-websites-big-12-week-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.justinr.us @ 2012-02-06 17:14:45 -->
