Vert 2.0, A Redesign Case Study Close to Home
Welcome to the new Vert Studios website. Justin and I have been working on the redesign since we merged back in July 2010. It's such a great feeling to know the world can finally see the product of your hard work. The project was dynamic, as our vision for Vert Studios changed quite frequently throughout the project. We'd like to share our thought process behind the redesign.The Need for Change
When considering whether or not you should redesign a website, the most important question you should ask yourself is "Why?". A redesign for redesign's sake usually leads to disappointment. Do you want to increase conversion rates? Are users confused by the layout? Does the current site cause your business to be perceived as outdated? If you don't have a definite answer as to why you want to redesign a website, you might want to consider making small adjustments instead of redesigning. In the case of Vert Studios, there were two main reasons why the site needed to be redesigned.Along came a JoeQuery
Originally, Vert Studios was a one-man shop run by Justin Edwards. At the time, I was running my own sole proprietorship by the name of McCullough Designs. In the summer of 2010, Justin and I met up for coffee to chat about web design. We discussed the markets, our competitors, our strengths, and our weaknesses. It was evident that Justin lacked development skills, and it was (more than) evident that I lacked design skills. After a few more chats, we decided we could provide higher quality work if we worked together. So in July of 2010, we merged under Vert Studios. What does that have to do with a redesign? The moment I joined Vert Studios, the personality of the company changed. Though Justin and I do have many things in common, we differ on many levels.- Justin's a Mac. I'm a PC.
- Justin can apply a pop-culture reference to any situation.
- Justin's been featured in an art show. My artistic ability stops at stick figure.

Look What I Can Do!
Every designer knows design is composed of form and function. Every developer knows that you should never implement programming tools "just because". We agree with these ideas 100%. However, Justin and I felt that a little extra flare would help showcase our technical capabilities. I'm one of the only developers in East Texas that develops jQuery plugins. In order to show potential clients how that adds value to them, we obviously needed to let them experience the power of jQuery themselves. As Justin's strength lies in design, the most technical item on his site was a pre-packaged jQuery slideshow. We decided that we needed a website that would allow for many custom jQuery plugin implementations. We came up with some cool ideas. While "cool" is not "innovative user experience design engagement 2.0", we felt that as long as "cool" was always accompanied by "useful", potential clients could benefit from seeing our cool, quirky ideas put into action. The site simply did not have the visual structure that would allow for seamless jQuery effects.The Company Personality
In order to produce an effective design, we had to establish what goals our design needed to achieve. To establish the goals, we came up with a list of adjectives that describe and do NOT describe our company.Describes Vert Studios
While we came up with many words to describe ourselves and the Vert persona, the words boiled down to- Quirky
- Competitive
Does NOT Describe Vert Studios
Similarly, there are many characteristics that we did NOT want Vert to embody. The main ones were- Corporate
- Tame
- Boring
Quirky
quirky — adj. containing many individual peculiarities of character.Design
The irregular polygon reiterated throughout the entire site, which we have termed "The Bubble", promotes the theme of quirkiness.


Development
Quirky + jQuery = FUN. Most of the jQuery quirkiness takes place on the work page. I told Justin that I really wanted to break away from the Lightbox style portfolio showcase. We decided a scrolling effect would be effective, but instead of a sticky scroller, I authored another plugin that triggers a callback each time the user scrolls a specified number of pixels. In this case, the text in "The Bubble" changes as it moves, and the image that correlates with the position fades to full opacity. This leads to a unique, engaging, and overall fun experience. When the user browses to the end of the work page, they are (pleasantly) surprised with a contact form, with the "Name" input field conveniently focused. We've noticed through analytics that quote requests usually come directly after a visit to our work page. To prevent the user from needing to scroll all the way up, then find and the contact link, we simply placed a form right by the work that motivated the action to contact us.

Copywriting
First and foremost, we'd like to thank Elise Brooking for her phenomenal writing skills. While we ultimately had to make some adjustments for the sake of design, she was able to give us a rock solid foundation to work with. Our favorite quirky phrases include:- We love cookies, but hate the cutter. (About)
- See what our work has to say. WARNING: It might get loud. (Navigation)
- So go ahead, let your competition have that cookie cutter template while you turn up the heat with new business. They'll just be left with crumbs. (About)
Competitive
competitive — adj. having a strong desire to compete or to succeed.Design
Justin and I strive to be the best at what we do. We take hours out of the week to read tutorials, explore new ideas, and create jQuery plugins, all for the sake of creating a better product. The best way to represent our competitive nature was to simply showcase our work such that it's immediately subject to scrutiny.
Development
One major differentiating factor between Vert Studios and other local web design companies is our blog. It's easily the most updated web design blog in East Texas. It not only showcases our expertise, it provides valuable client resources for prospects. We have articles that describe how web design works, red flags for scam indicators, and much more. Thus, we decided to implement a carousel on the home page that displays recent blog posts by pulling from our RSS feed.
Click to toggle source code
<?php date_default_timezone_set('America/Chicago'); //Credit to http://www.cybercoded.com/parse/parse.txt $url = "rss.xml"; $rss = simplexml_load_file($url); //Set up a counter. We only want 6 snippets. $count = 0; $numPosts = 6; //Length of the description $descLength = 90; foreach ($rss->channel->item as $item) { echo $item; if (++$count == $numPosts) { break; } $href = $item->link; $title = $item->title; $description = $item->description; $date = new DateTime($item->pubdate); $date = $date->format('n/j/y'); $comments = $item->comments; //Remove links $pattern = '/<a\b[^>]*>([^<]+)<\/a>/'; $replacement = '${1}'; $description = preg_replace($pattern, $replacement, $description); if (strlen($description) >= $descLength) { //Get substring $description = substr($description, 0, $descLength); //Get the last word, replace with Ellipse $description = substr($description, 0, strrpos($description, " ")); $description .= "..."; } //Add a first class for CSS purposes if($count == 1) { echo '<div class="post_snippet first">'; } else { echo '<div class="post_snippet">'; } //Prevent moderate titles from bumping into dismiss button. if( strlen($title)>18 && strlen($title)<25 ) { echo "<h4><a href=\"$href\">$title</a><br /> - $date</h4>"; } else { echo "<h4><a href=\"$href\">$title</a> - $date</h4>"; } echo "<p>$description</p>"; echo "<p class=\"read_more\"><a href=\"$href\">Read More</a> | <a href=\"$comments\">View Comments</a></p>"; echo '</div>'; } ?>
Copywriting
We're not afraid of losing on quality. Our work speaks volumes about our capabilities, and this blog speaks volumes about how much effort we pour into our craft. Instead of hiding our competition from prospects, we let them know immediately we're not afraid if they browse. In fact, we encourage it.
- We take the time to learn the latest technologies as they appear - staying step ahead of our competition, and allowing you to do the same.(About)
- The word "template" doesn't exist in our vocabulary. We know what it means to stand out from the crowd.(About)
- Great design is one thing. Elegant programing is another. Luckily we do both.(Services)