<?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>Graphic Fusion Design</title>
	<atom:link href="http://graphicfusiondesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://graphicfusiondesign.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 17:48:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>WordPress Custom Fields Tutorial</title>
		<link>http://graphicfusiondesign.com/blog/design/wordpress-custom-fields-tutorial/</link>
		<comments>http://graphicfusiondesign.com/blog/design/wordpress-custom-fields-tutorial/#comments</comments>
		<pubDate>Fri, 24 May 2013 17:35:00 +0000</pubDate>
		<dc:creator>Chris Marslender</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3814</guid>
		<description><![CDATA[WordPress custom fields provide an easy way to add extra data to various places in your themes. There are many ways that custom fields can be used, one of the more common ways being to set up single key/value pairs to use in your theme, which is what I will &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/wordpress-custom-fields-tutorial/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>WordPress custom fields provide an easy way to add extra data to various places in your themes. There are many ways that custom fields can be used, one of the more common ways being to set up single key/value pairs to use in your theme, which is what I will demonstrate in this WordPress custom fields tutorial.</p>
<h3>Page Setup</h3>
<p>When you are editing a page, there should be a section underneath the main editor called “Custom Fields”. In this section, you can add custom metadata to your post. All you have to do is provide a name to identify your extra information, as well as the information itself.</p>
<p>For example, lets say you wanted to add a section to a page for your favorite book, The Cat in the Hat. To accomplish this, you could add a custom field called ‘book’ with the value ‘The Cat in the Hat’.<br />
<a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/ss1.png"><img class="alignnone size-full wp-image-3819" alt="WordPress Custom Fields Tutorial" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/ss1.png" width="600" height="" /></a></p>
<h3>Theme Setup</h3>
<p>To get this information to show up on your site, you have to edit your theme and use the WordPress function get_post_meta(). Take a look at the following snippet of code:</p>
<p><code><br />
&lt;?php<br />
echo get_post_meta(get_the_ID(), ‘book’, true);<br />
?&gt;<br />
</code><br />
The get_post_meta function takes up to three parameters. The first it requires is the post id. We get this using the function get_the_ID() above. The next required piece of information is the key we stored our value under, in this case ‘book’. The last parameter tells WordPress we want a single value back, rather than an array.</p>
<p>The above snippet would output ‘The Cat in the Hat’ to the page.</p>
<h3>More Custom Fields</h3>
<p>You can always use more than just one key/value pair. Extending the above example, you could also create another custom field for the author of your favorite book. Just create a custom field with the key ‘author’ and the value ‘Dr. Seuss’. You would use a similar snippet of code to retrieve the author, just change the second parameter of get_post_meta from ‘book’ to ‘author’</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/wordpress-custom-fields-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Web Design: Why You Should Make the Switch</title>
		<link>http://graphicfusiondesign.com/blog/design/why-you-should-make-the-responsive-web-design-switch/</link>
		<comments>http://graphicfusiondesign.com/blog/design/why-you-should-make-the-responsive-web-design-switch/#comments</comments>
		<pubDate>Thu, 23 May 2013 16:11:46 +0000</pubDate>
		<dc:creator>Dillon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[responsive web design]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3802</guid>
		<description><![CDATA[An Introduction to Responsive Web Design: You can think of Responsive Web Design as dynamic, flexible, mobile ready page layouts for your website. A responsive website will scale and re-scale fluidly to accommodate any screen size. “Fluid” is really the word to hone in on, as the user experience is &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/why-you-should-make-the-responsive-web-design-switch/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<h3>An Introduction to Responsive Web Design:</h3>
<p>You can think of Responsive Web Design as dynamic, flexible, mobile ready page layouts for your website. A responsive website will scale and re-scale fluidly to accommodate any screen size. “Fluid” is really the word to hone in on, as the user experience is consistent and not compromised when viewing the site on different screen resolutions such as mobile devices or smaller screens.</p>
<p>&nbsp;</p>
<h3>Mobile Ready VS Responsive Web Design:</h3>
<p>The battle between Mobile Ready and Responsive Website is over. The debate of which approach will better serve the future of the web has gone on for too long. Understanding the two and their purpose is simple. To re-iterate, Responsive Web Design re-stacks and re-scales elements on the page to accommodate the size of the screen on the device from which the user is experiencing the site. This eliminates the need to zoom and saves the user from excessive scrolling to navigate a page. The alternative, Mobile Ready, is a completely different site designed specifically for the device the user is viewing from. There are immediate disadvantages that can arise from the Mobile Ready approach such as:</p>
<ul>
<li>Inconsistent styling between the standard site and the mobile site.</li>
<li>Inconsistent information, as some items may or may not get translated into the mobile ready site.</li>
<li>Most important of all, Mobile Ready is not adaptable and does not future proof your website.</li>
</ul>
<p>With technology expanding with higher resolution displays it is important to future proof your website to evolve with the times. That means that unless you are designing a <em>very</em> specific web app, then is almost all cases we will advocate for responsive web design, hands down.</p>
<p>&nbsp;</p>
<h3>Still not ready to take the plunge for a Responsive Website? Well I’m not finished…</h3>
<ul>
<li>A ComScore Survey estimated in 2009 that there were 800 million Mobile Internet users – and projected that by 2015 that number would rise to 1.9 BILLION.</li>
<li>The number of new desktop users per year is growing nowhere near the rate of mobile users.</li>
<li>It has long been advised in the world of SEO that search engines such as Google and Bing are going to be looking for, and handing out extra brownie points to mobile friendly, responsive websites using media queries to queue mobile stylization.</li>
<li>When done right, Responsive Websites increase site optimization and load times.</li>
<li>In the long run, future-proofing your website by laying a responsive flexible foundation will save you money.</li>
<li>Being Responsive means more cross browser and cross platform support to maximize your audience and viewers. This includes, desktops, laptops, smartphones, tablets, etc.</li>
<li>No need for a “mobile.yourdomain.com” subdomain – this is important for earing site traffic and for SEO.</li>
<li>CLEAN CODE – it may be all behind the scenes, but to web developers like ourselves, responsive web design is a much cleaner and more efficient way of supporting the change.</li>
</ul>
<h3></h3>
<h3>Should you make the switch? Yes.</h3>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/why-you-should-make-the-responsive-web-design-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a Company at a Young Age</title>
		<link>http://graphicfusiondesign.com/blog/business/starting-a-company-at-a-young-age/</link>
		<comments>http://graphicfusiondesign.com/blog/business/starting-a-company-at-a-young-age/#comments</comments>
		<pubDate>Tue, 21 May 2013 09:00:40 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[entrepreneurship]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3667</guid>
		<description><![CDATA[&#160; Most people want to hear the story of how you started your most recent success, or the thing that you’re currently doing. But if that’s all you talk about, people will often lose sight of the fact that behind every successful company, there is something that sparked your drive, &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/business/starting-a-company-at-a-young-age/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Most people want to hear the story of how you started your most recent success, or the thing that you’re currently doing. But if that’s all you talk about, people will often lose sight of the fact that behind every successful company, there is something that sparked your drive, created the focus and instilled the passion and belief in your life necessary to bring that company into being. I’m going to tell a brief story that I hope shows the events over the course of my young-adulthood that led me to hurdle overwhelming obstacles, and that ultimately shaped my belief that everything is possible.</p>
<p>In thinking about this blog post, I first thought I’d write about either of my first two companies, 10 Best America or Graphic Fusion, but I realized something: the story of those companies doesn’t explain how I first figured out what it took to start a business. The truth is, what did that was the first time I went about starting a company, many years earlier.</p>
<h4><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/NathanBlogPhoto2.jpg"> </a></h4>
<h4 style="font-size: 13px;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/NathanBlogPhoto2.jpg"><img class="size-medium wp-image-3778 alignleft" alt="Puente at age 13 starting his own business" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/NathanBlogPhoto2-203x300.jpg" width="" height="200" /></a></h4>
<h4>My First Company</h4>
<p>My parents home schooled me and as a result, I started going to the University of Arizona when I was 13.  As a product of how my parents schooled me, I had to do everything from a young age. It moved me to strive for things that a person my age would not normally try to achieve. I was completely focused on school because I didn’t have the distractions of your typical college student.</p>
<p>This focus and drive always had me thinking about opportunities, even when they seemed to be out of reach.  I stumbled upon one very significant opportunity because I really wanted a job when I was 15.  The only barrier was my age, but that had never stopped me before, and I was determined to find a solution.</p>
<h4>Puente Bros.</h4>
<p>My parents told me I could get odd jobs around the neighborhood as a handyman or a landscaper, so I tried it for a while. The pay wasn’t great and the work was hard, and I knew it wasn’t what I wanted to be doing, which meant I was on the lookout for new opportunities.  One day, a family friend re-sealed my parent’s driveway, and I inquired about product cost, profit margins, competition, essential hard costs and market demand.  Although they thought it was funny that a 15-year-old was so inquisitive about their profession, they made me an offer and said “if you can get a truck and find someone to drive it, we will give you the product at cost and you’ve got yourself a business.”</p>
<p>Whether they meant it or not, I took them seriously, and I had soon saved up enough money, along with a little help from the parents, to buy an old Ford Lariat F250, long bed, extended cab. I brought on my big bro as a partner to drive the truck, and voila! Puente Bros. Asphalt LLC was born. The business grew enough that we had several employees before we dismantled it after I graduated college—I was 18 years old.</p>
<h4>Final Thoughts</h4>
<p>This business was far from glamorous but it set me on a path to reach my goals, helped me save a lot of money during college, and more importantly it instilled me that I should always be focused on taking action, working hard and not letting uncharted territory deter me from my vision.</p>
<p>So, what obstacle do you need to overcome?</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/business/starting-a-company-at-a-young-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modernism: Design History &amp; Modern Design</title>
		<link>http://graphicfusiondesign.com/blog/design/modernism-design-history-modern-design/</link>
		<comments>http://graphicfusiondesign.com/blog/design/modernism-design-history-modern-design/#comments</comments>
		<pubDate>Mon, 20 May 2013 09:00:53 +0000</pubDate>
		<dc:creator>lisa</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[modernism]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3760</guid>
		<description><![CDATA[Design history is one of my favorite topics. To me, it is one of the very few things that can broaden your perspective on almost any area of life. Modernism is my main interest in design history, and it merits attention, since it is a style that we see displayed &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/modernism-design-history-modern-design/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Design history is one of my favorite topics. To me, it is one of the very few things that can broaden your perspective on almost any area of life. Modernism is my main interest in design history, and it merits attention, since it is a style that we see displayed in most designs. One of modernism’s most basic tenets is that design should aim to be universal, meaning that it should be applicable to a wide range of people regardless of who they are, when they were born, where they come from, etc. Did you know, however, that without functionalism, modernism would suffer greatly on a conceptual level?</p>
<p>&nbsp;</p>
<h2>Functionalism in Modern Design</h2>
<p>&nbsp;</p>
<p>Functionalism is the idea that when creating a design, the functional qualities should come first, and aesthetic appeal should come second. Although this idea seems straightforward, understanding the history of this idea is important to an understanding of modernism and modern design.</p>
<p>The idea of putting function first has helped to produce some of the designs that define modernism. It has created works that have been deconstructed to their basic forms and organic structures while still serving the needs of mankind, and ultimately being aesthetically pleasing. The individual ideas of Max Bill, Mies van der Rohe, Paul Rand, and George Nelson—some of modernism’s key contributors—have strongly expressed functionalism’s role in the movement. Their different practices have come together to collectively show functionalism’s connection to a key focus of modernism: universalism.</p>
<p>&nbsp;</p>
<h2>Communication and Design</h2>
<p>&nbsp;</p>
<p>Rand believed that design had to serve the purpose of communication. He once said, “it is not good design if it does not co-operate as an instrument in the service of communication.” If graphic design is supposed to communicate a message, what use does a design have if it does not function as a line of communication? It has no value without the connection to its function. It is no longer considered a design. Even if a design were aesthetically pleasing, Rand would say it has lost its value if it did not serve a function.</p>
<p>Taking that into consideration, judging and creating a design now adds a new perspective: form vs. function. This alone has become the standing factor in differentiating a successful design from an unsuccessful design. It has pushed design to find an aesthetic solution to unsolved problems.</p>
<p>&nbsp;</p>
<h2>Final Thoughts</h2>
<p>&nbsp;</p>
<p>Summing up the history of modernism in a blog would deny its value, but I encourage others to expose themselves to the history of design. It is a big contributor in building your own foundation as a designer.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/modernism-design-history-modern-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typography for Print</title>
		<link>http://graphicfusiondesign.com/blog/design/typography-for-print/</link>
		<comments>http://graphicfusiondesign.com/blog/design/typography-for-print/#comments</comments>
		<pubDate>Mon, 13 May 2013 09:00:32 +0000</pubDate>
		<dc:creator>lisa</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3736</guid>
		<description><![CDATA[Designing typography for print can be different than designing for the web. Since print design involves physical interaction, some of the typographic elements seen in web design cannot be applied. Layout One of the things you have to consider is layout. What dimension will you be printing on? Since you &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/typography-for-print/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Designing typography for print can be different than designing for the web. Since print design involves physical interaction, some of the typographic elements seen in web design cannot be applied.</p>
<h2>Layout</h2>
<p>One of the things you have to consider is layout. What dimension will you be printing on? Since you aren’t constrained to the dimensions of the screen, you will need to select a size on which you will be designing. What kind of layout will you be working with? What kind of spacing will your typography need? Try experimenting with dimensions that are not standard paper sizes.</p>
<p>&nbsp;</p>
<h2>Paper</h2>
<p>Another consideration to make is paper type. Would the message you are seeking to express with your typographic design be stronger if it were printed on a specific texture of the paper? Maybe the typography would appear better in a UV filter against flat elements and other areas of your design. Experiment with printing on different paper types and run a few print tests before you settle on basic printing options.</p>
<p>&nbsp;</p>
<h2>Interaction</h2>
<p>The most interesting area that needs to be considered—in my opinion—is how others will interact with your typography. Will you be printing on a sheet that will require folds and die-cuts? Will ignoring die-cuts and interaction with folds best portray your typography’s message?</p>
<p>&nbsp;</p>
<h2>Final Thoughts</h2>
<p>Go forward more by exploring the different ways you can push your typography. But as you are exploring the different areas, keep in mind that you should always be working with a grid system, and keeping consistency in mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/typography-for-print/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Choose SEO Writing Topics</title>
		<link>http://graphicfusiondesign.com/blog/search-engine-optimization/how-to-choose-seo-writing-topics/</link>
		<comments>http://graphicfusiondesign.com/blog/search-engine-optimization/how-to-choose-seo-writing-topics/#comments</comments>
		<pubDate>Thu, 09 May 2013 18:37:47 +0000</pubDate>
		<dc:creator>Patrick Kozey</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3699</guid>
		<description><![CDATA[In a previous post, I offered some thoughts on how to write SEO friendly content. In this post, I’m interested in addressing a question that might be even more important: how do you choose SEO writing topics for your blog? After all, no matter how determined you are to create &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/search-engine-optimization/how-to-choose-seo-writing-topics/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>In<a title="How to Write Good SEO Content" href="http://graphicfusiondesign.com/blog/search-engine-optimization/how-to-write-good-seo-content/"> a previous post</a>, I offered some thoughts on how to write SEO friendly content. In this post, I’m interested in addressing a question that might be even more important: how do you choose SEO writing topics for your blog? After all, no matter how determined you are to create content for your site, that first step of topic selection is often the hardest. What’s more, for the most effective writing in terms of SEO, choosing the right topic can do a great deal of the work for you. In this post, I’ll focus on one answer, namely how you can use information you all ready have from your clients or customers into good SEO writing.</p>
<p>&nbsp;</p>
<h2>What <em>is</em> a Good SEO Writing Topic?</h2>
<p>&nbsp;</p>
<p>A good SEO writing topic is one that will answer a question, offer useful information, or get others to link to it. In other words, it’s quality information that offers something that searchers need. A good starting point is to address what you really want to accomplish with your content.</p>
<ul>
<li>Do you want to attract links from outside sources? Focus on creating content that will appeal to a web-savvy audience that will reference your content (i.e. web designers, tech bloggers, etc.).</li>
<li>Want to create a page that will work as a funnel for searches? Use blog content to create an “organic” landing page, and users can explore your site from there.</li>
<li>Looking to move potential customers along in the process of using/buying your product or services? Provide them with information they need to make the next step.</li>
</ul>
<p>&nbsp;</p>
<h2>How to Find a Topic</h2>
<p>&nbsp;</p>
<p>Now that you have a clearer idea of what kind of topics will equal effective SEO content, the question remains, where do I find these quality SEO writing topics? There are a few places, but keeping your goals in mind will certainly help you along the way.</p>
<p>One method is so obvious, it may not have occurred to you—ask the customers you all ready have. What are the questions they would like to have answered easily on your website? If you have a brick-and-mortar store, what do they like about coming in every day or week that they would enjoy seeing duplicated online? Maybe the enjoy recommendations from staff that regular product reviews could provide.</p>
<p>If you do not have the opportunity to ask customers for this information in person, there are other ways to get their feedback as well. You could make use of surveys that you can develop easily with <a href="http://www.surveymonkey.com/">free tools like SurveyMonkey</a> among many others. If your company is large enough to have dedicated customer service representatives, they can also serve as a valuable resource for helpful topics. What are the issues that come up frequently when a customer calls or emails to get help? By publishing a blog post containing that information you can help push clients or customers along in the sales cycle <em>and</em> prevent a call to your representatives—all while creating something that might well be searched for. All of it means good SEO content.</p>
<p>&nbsp;</p>
<h2>Final Thoughts</h2>
<p>In another post, I will address how you can use search data to determine good SEO writing topics as well, but for now, I’ll leave you with these final thoughts—write good content. Remember the intent behind every search is to <i>find useful information</i> and you will be well served. Ranking is all well and good, but if it’s achieved with lousy content, it will not lead to conversions or a high ROI.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/search-engine-optimization/how-to-choose-seo-writing-topics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>University of Arizona Design Program Review: Part III</title>
		<link>http://graphicfusiondesign.com/blog/design/university-of-arizona-design-program-review-part-iii/</link>
		<comments>http://graphicfusiondesign.com/blog/design/university-of-arizona-design-program-review-part-iii/#comments</comments>
		<pubDate>Wed, 08 May 2013 17:11:43 +0000</pubDate>
		<dc:creator>lisa</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[U of A]]></category>
		<category><![CDATA[VisComm]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3680</guid>
		<description><![CDATA[Here&#8217;s Part III of our University of Arizona Design Program Review. If you haven&#8217;t all ready, read parts one &#38; two of this review by Marianne. Preface Before you read this article, write down or at least think about what your perfect day is. I’ll get back to this later. &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/university-of-arizona-design-program-review-part-iii/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p><em>Here&#8217;s Part III of our University of Arizona Design Program Review. If you haven&#8217;t all ready, read parts <a title="Part 1" href="http://graphicfusiondesign.com/blog/other/university-of-arizona-design-program-review/" target="_blank">one</a> &amp; <a title="Part 2" href="http://graphicfusiondesign.com/blog/design/university-of-arizona-design-program-review-part-ii/" target="_blank">two</a> of this review by Marianne.</em></p>
<h2>Preface</h2>
<p>Before you read this article, write down or at least think about what your perfect day is. I’ll get back to this later.</p>
<p>&nbsp;</p>
<h2>Reflecting on the past</h2>
<p>Just this past week I finished my first year of the two-year VisComm Program at the University of Arizona. After reading Marianne’s reviews, I was reminded of where my classmates and I started. I was really bitter and reluctant about most of the prerequisite courses I had to take, but soon discovered how useful they ended up being. The Art History prerequisites helped me expand my awareness of design on a universal scale, which in return helped me determine what elements I could, and should, use to create a successful design. Even the FYE courses, the prerequisites I hated the most, ended up being an excellent outlet for discovering my execution techniques and short cuts—quality ones—that worked best for me. If you are a Pre–VisComm student reading this now, believe it or not, the skills you learn in the FYE courses become really handy when your instructors expect 50 thumbnail sketches, 5 well constructed packaging pieces, and close to perfect mounting skills within a 48 hour period. Hindsight is 20/20, and I am telling you now that those prerequisites are there to give you the opportunity to build your personal foundation—to make it as strong and efficient as you <i>want</i> it to be.</p>
<p>&nbsp;</p>
<h2>Application</h2>
<p>Applying to the program was where I started to really have fun. The VisComm portfolio review occurs once a year during spring and you have what seems to be a 50-50 chance of getting in. Applicants are to submit a portfolio of 10-12 pieces, including the Portfolio Review Visual Assignment. This assignment is a visual response based on one of the two written pieces provided to you. Only 20 design students and 20 illustration students get accepted into the program, and those who don’t have to wait another full year before they can re–apply. I know a lot of students who didn’t get in the first time, but you can still take some of the VisComm classes, although you won’t have priority for them. I recommend doing this, so that if you’re accepted the following year, you can be on the same track as the rest of the VisComm students.</p>
<p>After being accepted into the program, I was excited to take the classes that really grabbed my attention like ART363A (Typography I), and ART361 (Digital Design Studio II). Those classes allowed me to explore design elements about which I was interested in learning. The first semester in the program was the more enjoyable half of the first year. This last semester was hell, complete torture, I couldn’t believe I had signed up for it.</p>
<p>So what changed from the first semester to the second? ART365, aka Design II. If I had to assign high school stereotypes to the VisComm courses, Design II would be the bully. Hands down. Some students will disagree with this statement, but the ones who do are probably the ones that didn’t push themselves, or their ideas, to do more. I remember our instructor telling us from Day 1 that this class was anything we wanted it to be, and that our ideas were not limited to the requirements. We were assigned to create a brand, and throughout the semester we had to design different elements of it. His statement made us realize that we were given the opportunity to take our own project and really push it. That idea alone led me and a few other classmates to live an unthinkable life: averaging 17 hours of sleep per week, spending several hundred dollars a month on printing and supplies, making daily showers optional, leaving dishes and laundry dirty for several weeks—if not months—and other unthinkable acts. But as odd as it might sound, doing that helped us break our limits, all so we could find the next one to break. For once, we were given the power to be all that we could be, and it was just too good of an option to ignore.</p>
<p>&nbsp;</p>
<h2>Final Thoughts</h2>
<p>If I were given the choice to take the semester over, I would. I would double the load and do it again because the personal growth and strength that was gained from this past semester was the most valuable lesson I have ever learned from school. I’m not going to lie, as excited as I am about taking Design III next semester, I’m a little intimidated by it. Design III might just be the asshole of high school stereotypes, and I’m still recovering from the bully. As for Marianne, I’m excited to see how her design skills develop and what she will decide to submit in the 2014 portfolio review. I hope others will learn from my experiences in the first year of the VisComm Program.</p>
<p>To conclude my review of the U of A’s VisComm program, I’ll say it’s a great program, but only if you are open to seeing, and taking, the opportunities that are provided. If you need a better review, then look back at your answer of the perfect day. If you didn’t mention design in any part of it, then you may not find this program to be all that you want it to be. Just another thing I learned from my instructors.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/university-of-arizona-design-program-review-part-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logo Design Inspiration</title>
		<link>http://graphicfusiondesign.com/blog/design/logo-design-inspiration/</link>
		<comments>http://graphicfusiondesign.com/blog/design/logo-design-inspiration/#comments</comments>
		<pubDate>Mon, 06 May 2013 20:28:40 +0000</pubDate>
		<dc:creator>Andrew Lucas</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Logo]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3650</guid>
		<description><![CDATA[A large part of design is observation—you can’t design a good logo unless you can recognize one. An important part of my job is staying up to date on the trends and colors that consumers are interested in right now. Branding is more than just a symbol and font; it &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/design/logo-design-inspiration/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>A large part of design is observation—you can’t design a good logo unless you can recognize one. An important part of my job is staying up to date on the trends and colors that consumers are interested in right now. Branding is more than just a symbol and font; it inspires and defines a company or product. It creates a unique and iconic idea that consumers will remember.</p>
<p>Great logo design inspires me to create the best branding possible, so I’ve included the following examples I’ve come across recently to serve as logo design inspiration:</p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/buffalo-1.png"><img class="size-full wp-image-3652 aligncenter" alt="buffalo 1" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/buffalo-1.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/think-2.png"><img class="size-full wp-image-3657" alt="think 2" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/think-2.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/anchor-3.png"><img class="size-full wp-image-3651" alt="anchor 3" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/anchor-3.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/varig-4.png"><img class="size-full wp-image-3658" alt="varig 4" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/varig-4.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/surf-cube-5.png"><img class="size-full wp-image-3656" alt="surf cube 5" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/surf-cube-5.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/chair-6.png"><img class="size-full wp-image-3653" alt="chair 6" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/chair-6.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/waterfront-7.png"><img class="size-full wp-image-3659" alt="waterfront 7" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/waterfront-7.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/imaginary-friend-8.png"><img class="size-full wp-image-3654" alt="imaginary friend 8" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/imaginary-friend-8.png" width="600" height="" /></a></p>
<p style="text-align: center;"><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/spartan-9.png"><img class="size-full wp-image-3655" alt="spartan 9" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/spartan-9.png" width="600" height="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/design/logo-design-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LISA HQ Update #2: Project Management from Graphic Fusion</title>
		<link>http://graphicfusiondesign.com/blog/dev/lisa-hq-update-2-project-management/</link>
		<comments>http://graphicfusiondesign.com/blog/dev/lisa-hq-update-2-project-management/#comments</comments>
		<pubDate>Fri, 03 May 2013 21:13:35 +0000</pubDate>
		<dc:creator>Alex Gurevich</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[lisahq]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3625</guid>
		<description><![CDATA[&#160; It’s been a few months since we gave the first introduction to our LISA project management system. Here is a progress report of what we’ve got going on. First, we have a new LISA HQ home page. We are pretty excited about the new home page for LISA that &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/dev/lisa-hq-update-2-project-management/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>It’s been a few months since we gave the <a title="Lisa: a new project management app by Graphic Fusion" href="http://graphicfusiondesign.com/blog/news/lisa-a-new-project-management-app-by-graphic-fusion/">first introduction to our LISA project management system</a>. Here is a progress report of what we’ve got going on.</p>
<p>First, we have a new LISA HQ home page. We are pretty excited about the new home page for LISA that we <a href="http://graphicfusiondesign.com/blog/dev/lisa-hq-update-2-project-management">just launched a few days ago</a>.</p>
<h3>New design</h3>
<p>We completely redesigned LISA to give it a more modern look, and to make it easier to use. We have sectioned off each module block, making it a lot easier to get the information you need with just a glance.</p>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/1newdesign.png"><img class="size-full wp-image-3626 aligncenter" alt="1newdesign" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/1newdesign.png" width="600" height="" /></a></p>
<p>&nbsp;</p>
<p>We have also updated the client side design significantly as well. We made it very simple, and focused on the phases of the project, and where it is currently, rather than displaying a lot of extraneous information.</p>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/2.png"><img class="size-full wp-image-3627 aligncenter" alt="2" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/2.png" width="600" height="" /></a></p>
<p>&nbsp;</p>
<h3>New features</h3>
<p>We added a ton of new features and improved the old ones. Here is just a quick a quick highlight of a few of them:</p>
<ul>
<li>
<h4><span style="font-size: 1em;">Ticketing system </span></h4>
<p>Now you can create tickets, assign them to users, comment on them and have different status for tickets. Tickets can also be placed on hold if needed.</li>
</ul>
<p>&nbsp;</p>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/3.png"><img class="size-full wp-image-3628 aligncenter" alt="3" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/3.png" width="600" height="" /></a></p>
<ul>
<li>
<h4><span style="font-size: 1em;">&#8220;Old&#8221; Status Notifications </span></h4>
<p>We noticed that we needed to keep track of when statuses become outdated. So now for each project you can set to track how long ago status message was updated.</li>
</ul>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/4.png"><img class="size-full wp-image-3629 aligncenter" alt="4" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/4.png" width="600" height="" /></a></p>
<ul>
<li>
<h4><span style="font-size: 1em;">Sidebars </span></h4>
<p>We have moved the Calls and Clients tabs into sidebars, that way the information in them can be accessed more quickly, and on any page, without interrupting your workflow. The layout is also responsive, so it will adjust automatically when the sidebar is turned on and move the tabs out of the way.</li>
</ul>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/5.png"><img class="size-full wp-image-3630 aligncenter" alt="5" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/5.png" width="600" height="" /></a></p>
<ul>
<li>
<h4><span style="font-size: 1em;">Calls </span></h4>
<p>We have updated the way calls work, and we think it’s a big improvement. Now, multiple calls are grouped together per client. You can also log calls that already took place, and see comments on all past calls.</li>
</ul>
<p>&nbsp;</p>
<ul>
<li>
<h4><span style="font-size: 1em;">Tasks </span></h4>
<p>That’s right we added tasks into LISA! You can access your tasks from a sidebar or see tasks for each project. You can assign tasks to projects and people, set due dates and have ability to comment on each task as well. We still need to do some polishing, but it’s already pretty functional.</li>
</ul>
<p>&nbsp;</p>
<p><a href="http://graphicfusiondesign.com/wp-content/uploads/2013/05/6.png"><img class="size-full wp-image-3631 aligncenter" alt="6" src="http://graphicfusiondesign.com/wp-content/uploads/2013/05/6.png" width="600" height="" /></a></p>
<ul>
<li>
<h4><span style="font-size: 1em;">Phases and Milestone Management </span></h4>
<p>We redid phase navigation and the user interface. It’s now extremely easy to mange project phases; you can also set up milestones and schedule them for specific dates.</li>
</ul>
<p>&nbsp;</p>
<p>Of course there are many more tweaks and updates to come, so if you are interested for a beta invite come let us know in the comments and include your email.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/dev/lisa-hq-update-2-project-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tucson Marketing Agencies – Reactive vs. Proactive</title>
		<link>http://graphicfusiondesign.com/blog/business/tucson-marketing-agencies-reactive-vs-proactive/</link>
		<comments>http://graphicfusiondesign.com/blog/business/tucson-marketing-agencies-reactive-vs-proactive/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 19:21:50 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://graphicfusiondesign.com/?p=3430</guid>
		<description><![CDATA[As entrepreneurs, we strive to offer clients the best solution and to execute it with excellence. Problems arise when we simply perform a service without being involved in the formulation of a client’s goals. What Being “Reactive” Looks Like When an agency focuses on executing a service for a client, &#8230; <a class="more-link" href="http://graphicfusiondesign.com/blog/business/tucson-marketing-agencies-reactive-vs-proactive/">Read more &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>As entrepreneurs, we strive to offer clients the best solution and to execute it with excellence. Problems arise when we simply perform a service without being involved in the formulation of a client’s goals.</p>
<h4>What Being “Reactive” Looks Like</h4>
<p>When an agency focuses on executing a service for a client, it is easy to lose sight of their overall goals.  That’s a problem, because when you fail to align your services with your client’s goals, we quickly find ourselves becoming “Reactive.”  How can you tell if you are being Reactive? Often times, your first clue will be when a client comes to you and says something like, “I’m not hitting my numbers,” or “I’m not reaching my goals fast enough.” Sometimes, the client doesn’t even get to that point—they just move on to another agency. In those cases, it’s easy to be confused as to what went wrong. “We executed our end of the agreement flawlessly,” the thinking goes, “so why was the client unhappy?”</p>
<h4>Be “Proactive”</h4>
<p>This is where the power of being a “Proactive” agency becomes clear. Being Proactive consists of a range of distinct elements, including taking care, being attentive, understanding goals, and the having the ability to tell a client when it’s time to step up their game. Making sure that the client’s overall goal lines up with the plan currently in place allows you to see when things need change, or when other services need to be added in order to achieve a client’s goals. That is the heart of being a Proactive agency.</p>
<h4>Honesty is the best policy</h4>
<p>Don’t be afraid to tell a client when the services you’re providing aren’t cutting it. It is our job to tell our client’s what they need, but that is not always enough, as sometimes they cut much-needed services from their budgets.  Even if it’s not in the budget, we have a responsibility to let our client’s know what they need to do to reach their goals…even if that means they may move on to another agency.  Believe me when I say, they will move on much sooner if you are Reactive, not Proactive.</p>
]]></content:encoded>
			<wfw:commentRss>http://graphicfusiondesign.com/blog/business/tucson-marketing-agencies-reactive-vs-proactive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: graphicfusiondesign.com @ 2013-05-25 04:41:58 by W3 Total Cache -->