
<?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>Alius Designs Inc &#187; Blog</title>
	<atom:link href="http://www.aliusdesigns.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aliusdesigns.com</link>
	<description>Chicago Web Design Company</description>
	<lastBuildDate>Fri, 16 Dec 2011 00:03:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Nice URLS PHP .htaccess</title>
		<link>http://www.aliusdesigns.com/blog/htaccess/nice-urls-php-htaccess/</link>
		<comments>http://www.aliusdesigns.com/blog/htaccess/nice-urls-php-htaccess/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 02:06:37 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=667</guid>
		<description><![CDATA[Nice clean URLs: .htaccess RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ $1.php [L,QSA] # http://domain/about -&#62; http://domain/about.php -------------------------------------------------- .htaccess RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] # http://domain/about -&#62; http://domain/index.php?q=about &#60;?php // $url_data is an array $url_data = explode("/",$HTTP_SERVER_VARS['PATH_INFO']); ?&#62; Source: http://snipplr.com/view/4562/nice-urls-php-htaccess/]]></description>
			<content:encoded><![CDATA[<p>Nice clean URLs:<br />
<code>.htaccess<br />
RewriteEngine On<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ $1.php [L,QSA]<br />
# http://domain/about -&gt; http://domain/about.php</p>
<p>--------------------------------------------------</p>
<p>.htaccess<br />
RewriteEngine On<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]<br />
# http://domain/about -&gt; http://domain/index.php?q=about</p>
<p>&lt;?php<br />
// $url_data is an array<br />
$url_data = explode("/",$HTTP_SERVER_VARS['PATH_INFO']);<br />
?&gt;</code></p>
<p>Source: <a href="http://snipplr.com/view/4562/nice-urls-php-htaccess/" target="_blank">http://snipplr.com/view/4562/nice-urls-php-htaccess/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/htaccess/nice-urls-php-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up your site with .htaccess caching</title>
		<link>http://www.aliusdesigns.com/blog/speed-site-htaccess-caching/</link>
		<comments>http://www.aliusdesigns.com/blog/speed-site-htaccess-caching/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 02:03:20 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[.htaccess]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=663</guid>
		<description><![CDATA[One of the most useful snippets that we&#8217;ve found recently is the one below. By using some simple .htaccess file cahing, you can dramatically increase your website speed. This snippet you should always have on your toolbox! # 1 YEAR Header set Cache-Control "max-age=29030400, public" # 1 WEEK Header set Cache-Control "max-age=604800, public" # 2 [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most useful snippets that we&#8217;ve found recently is the one below. By using some simple .htaccess file cahing, you can dramatically increase your website speed. This snippet you should always have on your toolbox!</p>
<p><code># 1 YEAR<br />
Header set Cache-Control "max-age=29030400, public"<br />
# 1 WEEK<br />
Header set Cache-Control "max-age=604800, public"<br />
# 2 DAYS<br />
Header set Cache-Control "max-age=172800, proxy-revalidate"<br />
# 1 MIN<br />
Header set Cache-Control "max-age=60, private, proxy-revalidate"</code></p>
<p>Source: <a href="http://www.askapache.com/htaccess/speed-up-sites-with-htaccess-caching.html" target="_blank">http://www.askapache.com/htaccess/speed-up-sites-with-htaccess-caching.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/speed-site-htaccess-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Custom Fields</title>
		<link>http://www.aliusdesigns.com/blog/wordpress-post-custom-fields/</link>
		<comments>http://www.aliusdesigns.com/blog/wordpress-post-custom-fields/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 21:20:20 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=504</guid>
		<description><![CDATA[While working on a project for a customer, needed to use custom fields, came across a few useful snippets: Dump out all custom fields as a list &#60;?php the_meta(); ?&#62; Display value of one specific custom field &#8220;companyName&#8221; would be ID value of custom field &#60;?php echo get_post_meta($post-&#62;ID, 'companyName', true); ?&#62; Display multiple values of [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a project for a customer, needed to use custom fields, came across a few useful snippets:</p>
<h4>Dump out all custom fields as a list</h4>
<pre>
<code>	&lt;?php the_meta(); ?&gt;</code>
</pre>
<h4>Display value of one specific custom field</h4>
<p>&#8220;companyName&#8221; would be ID value of custom field</p>
<pre>
<code>	&lt;?php echo get_post_meta($post-&gt;ID, 'companyName', true); ?&gt;</code>
</pre>
<h4>Display multiple values of same custom field ID</h4>
<pre>
<code>	&lt;?php $songs = get_post_meta($post-&gt;ID, 'songs', false); ?&gt;
		&lt;h3&gt;This post inspired by:&lt;/h3&gt;
		&lt;ul&gt;
        	&lt;?php foreach($songs as $song) {
		echo '&lt;li&gt;'.$song.'&lt;/li&gt;';
	} ?&gt;
		&lt;/ul&gt;</code>
</pre>
<h4>Display custom field only if exists (logic)</h4>
<pre>
<code>	&lt;?php
    $url = get_post_meta($post-&gt;ID, 'snippet-reference-URL', true);
		if ($url) {
			echo "&lt;p&gt;&lt;a href='$url'&gt;Reference URL&lt;/a&gt;&lt;/p&gt;";
		}
	?&gt;</code>
</pre>
<p><a href="http://perishablepress.com/press/2008/12/22/wordpress-custom-fields-tips-tricks/" target="_blank">Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/wordpress-post-custom-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Run a Loop Outside of WordPress?</title>
		<link>http://www.aliusdesigns.com/blog/run-loop-wordpress/</link>
		<comments>http://www.aliusdesigns.com/blog/run-loop-wordpress/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:22:41 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=487</guid>
		<description><![CDATA[Sample below can be used on any PHP file even outside your WordPress installation. Include Basic WordPress Functions &#60;?php define('WP_USE_THEMES', false); require('/server/path/to/your/wordpress/site/wp-blog-header.php'); query_posts('showposts=1'); ?&#62; Run Loop &#60;?php while (have_posts()): the_post(); ?&#62; &#60;h2&#62;&#60;?php the_title(); ?&#62;&#60;/h2&#62; &#60;?php the_excerpt(); ?&#62; &#60;p&#62;&#60;a href="&#60;?php the_permalink(); ?&#62;" class="red"&#62;Read more...&#60;/a&#62;&#60;/p&#62; &#60;?php endwhile; ?&#62;]]></description>
			<content:encoded><![CDATA[<p>Sample below can be used on any PHP file even outside your WordPress installation.</p>
<h4>Include Basic WordPress Functions</h4>
<pre>
<code>&lt;?php define('WP_USE_THEMES', false);
require('/server/path/to/your/wordpress/site/wp-blog-header.php');
query_posts('showposts=1'); ?&gt;</code>
</pre>
<h4>Run Loop</h4>
<pre>
<code>&lt;?php while (have_posts()): the_post(); ?&gt;
   &lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
   &lt;?php the_excerpt(); ?&gt;
   &lt;p&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;" class="red"&gt;Read more...&lt;/a&gt;&lt;/p&gt;
&lt;?php endwhile; ?&gt;</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/run-loop-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Simplicity in 2010 &#8211; UX/UI Design</title>
		<link>http://www.aliusdesigns.com/blog/web-design-simplicity-in-2010-uxui-design/</link>
		<comments>http://www.aliusdesigns.com/blog/web-design-simplicity-in-2010-uxui-design/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 19:05:46 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=20</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;The new year has began and has gives us a new page to start off with &#8211; to improve ourselves. Looking back at previous years of designing, I see that we as designers gave in to our clients&#8217; requests &#8211; cluttering their website with different features that no one needs and thus duplicating content sometimes. [...]]]></description>
			<content:encoded><![CDATA[<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The new year has began and has gives us a new page to start off with &#8211; to improve ourselves. Looking back at previous years of designing, I see that we as designers gave in to our clients&#8217; requests &#8211; cluttering their website with different features that no one needs and thus duplicating content sometimes. In 2009, I started noticing that a lot of shifting in web design started happening, lots of new trends &#8211; one of my favorite ones is simplified websites &#8211; that got me to thinking: has web user evolved as the web designer has? I hope that in 2010, we&#8217;ll see the trend of simplicity continuing and evolving more.</p>
<h3>Clear and Light Web Design</h3>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I believe that one of the purposes of the designer is to keep information in order and presentable. As internet evolves, it is a responsibility of a designer to do so. Keep information organized and easier for the visitor/user to get to &#8211; easily identified and with less clicking. There are numerous websites spring up everyday with some kind of information that someone is looking for &#8211; visiting user&#8217;s attention span is getting smaller and smaller if website doesn&#8217;t grab the attention and lure the user further into the website. As a web designer, one needs to engage with the user and deliver information efficiently, straight to the point. Now, when I speak of simplifying a web design, I do not mean to do away with functionality and access to vital information to the visitor. As a designer, one has to think of a new way to create a new user experience by employing available tools at one&#8217;s disposal. I&#8217;ll give you an example that I see all over the new mobile phones &#8211; roller ball/button, one controls everything, i.e. iPhone, Nexus or Blackberries.<br />
</p>
<div align="center">
<a href="http://www.jasonreedwebdesign.com/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/jasonreed.jpg" alt="jason reed web design"><br />
</a>
</div>
<p></p>
<h3>One Page Website</h3>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Another interesting trend that I&#8217;ve noticed that has grown over the past year is one page websites. There&#8217;s so much new technology available for web designer today, it&#8217;s very interesting to see what they can come up with. A single page website can, at times, deliver more information than a multi-page website. It&#8217;s like a homepage is the main navigation to all of the content from the website. If you don&#8217;t have much of content to put up, you can provide pages of information without clicking off the page. Single page web design, as some designers use tabs, java scripts, modal boxes, sliders and toolbars to give more information in a single page. Single page websites can be easily managed, and a designer can think outside of the box when designing them.<br />
</p>
<div align="center">
<a href="http://djyura.com/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/djyura.jpg" alt="dj yura"><br />
</a>
</div>
<p></p>
<h3>Content and Image Slider</h3>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Here&#8217;s another trend that&#8217;s upcoming &#8211; I keep seeing many websites using image sliders with various JavaScript  frameworks as a featured content slider or image content slider for the portfolio to showcase their work or on a homepage to deliver information right away. By using sliders, it actually gives visitors a better impact and clear overview about the site. Plus, comparing to flash image sliders, JavaScript loads faster and it is search engine friendly. On top of that, you are increasing user experience.<br />
</p>
<div align="center">
<a href="http://icondesigner.net/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/icondesigner.jpg" alt="icon designer"><br />
</a>
</div>
<p></p>
<h3>Modal Boxes</h3>
<p>Taking user deeper and deeper into your site will make user lose interest. Maybe you don&#8217;t want user leaving from a certain page on your website. Why load a video or contact form on a separate page? I&#8217;ve used a few CRM, like <a href="http://www.sugarcrm.com/crm/" target="_blank">SugarCRM</a> and <a href="http://www.vtiger.com/" target="_blank">vTiger</a> systems lately and noticed that modal boxes appear there also. Modal boxes can be used for almost anything &#8211; login or signup forms, contact forms, lead generation, and etc.<br />
</p>
<div align="center">
<a href="http://collabfinder.com/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/modalbox.jpg" alt="modal box"><br />
</a>
</div>
<p></p>
<h3>Page Layouts going BIG</h3>
<p>Today, a lot of web users don&#8217;t just use 15&#8243; monitors anymore, monitor sizes have increased over the past few years to 20&#8243;-30&#8243;. What does that mean for a designer? More room, real estate to play around with for page layout. Now with that said, doesn&#8217;t mean that we need to cram up every bit of that space with something unnecessary, doesnt&#8217; mean to clutter web page. It just gives desigenr a bit more room to present information more efficiently.<br />
</p>
<div align="center">
<a href="http://www.apple.com/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/apple.jpg" alt="large page layout"><br />
</a>
</div>
<p></p>
<h3>Use of Type Visually</h3>
<p>Utilizing typography in today&#8217;s web design trend is growing rapidly. Large and bold text carries message clearly, at times, better than imagery itself.<br />
</p>
<div align="center">
<a href="http://www.onedaywithoutgoogle.org/"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/typography.jpg" alt="typography web design"><br />
</a>
</div>
<p></p>
<h3>Tweaker</h3>
<p>Some websites utilize what I like to call &#8220;tweaker&#8221;. It increases user experience exponentially in my opinion. I think this would work great for sites like <a href="http://www.newegg.com" target="_blank">NewEgg</a>. This trend is there, but very slowly picking up.<br />
</p>
<div align="center">
<a href="http://www.kayak.com"><br />
   	<img style="border:3px solid #999;" src="/wp-content/themes/aliusdesigns/images/tweaker.jpg" alt="kayak"><br />
</a>
</div>
<p>
So, I think I&#8217;ve covered some of the main points that I can think of at the moment. Hopefully these trends, elements will grow even more in 2010 and we should see some exciting works in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/web-design-simplicity-in-2010-uxui-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does your business need a Facebook page? YES and NOW!</title>
		<link>http://www.aliusdesigns.com/blog/does-your-business-need-a-facebook-page-yes-and-now/</link>
		<comments>http://www.aliusdesigns.com/blog/does-your-business-need-a-facebook-page-yes-and-now/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 19:04:16 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=18</guid>
		<description><![CDATA[Once Facebook announced the Fan Pages, this feature received a lot of mixed reviews &#8211; some people were excited to see a new advertising platform and other people just hated it &#8211; Facebook was starting to turn into MySpace. I&#8217;ve read a number of articles around the net on benefits of having a Facebook Fan [...]]]></description>
			<content:encoded><![CDATA[<p> Once Facebook announced the Fan Pages, this feature received a lot of mixed reviews &#8211; some people were excited to see a new advertising platform and other people just hated it &#8211; Facebook was starting to turn into MySpace. I&#8217;ve read a number of articles around the net on benefits of having a Facebook Fan Page for your business and here are a few reasons as to why it&#8217;s a good thing to create a Fan Page for your business.</p>
<ol>
<li>Fan pages that Facebook allows you to create are publicly accessible. Since Facebook requires a login, it prevents search engines from indexing.  Nevertheless, quite a few of Fan pages do not require a login and thus search engines can index the page.  On the other hand, people still stumble across Fan pages through search result, visit it, and then get to your site via the link.</li>
<li>Fan pages allow you to include links, and because the Fan pages are public, you can get a nice link credit from <a href="http://www.facebook.com" target="_blank">facebook.com</a>. It’s <strong>free</strong>.</li>
<li>As more and more people visit your Fan page and become fans, you can send updates to them.  On top of it all, you can send updates to your fans whenever you want.  It’s a nice to start building a database of interested users and potential future clients. Send messages about promotions, products, website, or pretty much anything you&#8217;d like.</li>
<li>Who&#8217;s controlling the content on Fan Page? YOU. Making the page before a competitor is critical.  You&#8217;ll be able to send the messages, edit or remove sections &#8211; to an extent that Facebook allows you to.</li>
<li>Another neat thing about Fan pages is news feed.  By joining your Fan page, feed off of your Fan page is published in fan&#8217;s news feed for all their friends to read (note: user can turn this off in their Account settings). Nevertheless, it&#8217;s viral campaigning &#8211; really helpful in establishing your brand and spreading the word.</li>
<li>Last, but not least &#8211; Facebook Fan page is free and easy to set up. To make a Fan page takes will take you just a few minutes – add URL of your website, some information, your schedule (if you have one) and don&#8217;t forget to upload the logo and that&#8217;s it.</li>
</ol>
<p>If you&#8217;d like to create a Fan page for your business or for yourself, go <a href="http://www.facebook.com/pages/create.php" target="_blank">here</a> and you can start right away, or click <a href="http://www.facebook.com/pages/Chicago-IL/Alius-Designs/232808422197" target="_blank">here</a> and join our Fan page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/does-your-business-need-a-facebook-page-yes-and-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deception through Photoshop.</title>
		<link>http://www.aliusdesigns.com/blog/deception-through-photoshop/</link>
		<comments>http://www.aliusdesigns.com/blog/deception-through-photoshop/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:31:33 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=15</guid>
		<description><![CDATA[Advertising is full of deception, influencing younger generation on many different levels. We are bombarded by magazines, billboards and many other forms of media, which show us unachievable fantasy. As far as, I understand, there&#8217;s a law now that requires publications to say &#8220;Photoshoped&#8221; on the images. Found these few interesting samples: Also, check out [...]]]></description>
			<content:encoded><![CDATA[<p>Advertising is full of deception, influencing younger generation on many different levels. We are bombarded by magazines, billboards and many other forms of media, which show us unachievable fantasy. As far as, I understand, there&#8217;s a law now that requires publications to say &#8220;Photoshoped&#8221; on the images.</p>
<p>Found these few interesting samples:</p>
<p><img src="http://assets.nydailynews.com/img/2009/03/27/alg_kim_kardashian.jpg" alt="Kim Kardashian - before and after" /><br />
<img src="http://fashionista.com/images/jessica%20alba%20before%20and%20after%20campari%20shoot%20by%20mario%20testino.jpg" alt="Jessica Alba - before and after" /></p>
<p>Also, check out this interesting video:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/YP31r70_QNM&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YP31r70_QNM&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/deception-through-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design brief &#8211; get the design you want.</title>
		<link>http://www.aliusdesigns.com/blog/design-brief-get-the-design-you-want/</link>
		<comments>http://www.aliusdesigns.com/blog/design-brief-get-the-design-you-want/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:10:56 +0000</pubDate>
		<dc:creator>Alius Designs</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.aliusdesigns.com/?p=12</guid>
		<description><![CDATA[The answer to getting the design that you want and envision in your head is the design brief. One of the most critical factors in ensuring that your project is successful is writing an effective design brief, and it doesn&#8217;t matter whether you are a client or a designer. In the next article, we&#8217;ll try [...]]]></description>
			<content:encoded><![CDATA[<p>The answer to getting the design that you want and envision in your head is the design brief.</p>
<p>One of the most critical factors in ensuring that your project is successful is writing an effective design brief, and it doesn&#8217;t matter whether you are a client or a designer.</p>
<p>In the next article, we&#8217;ll try to tell you how to write an effective design brief that will be beneficial to the client and the designer.</p>
<p><em>Note: We&#8217;ll be writing from the client’s perspective.</em></p>
<h2><strong>First: What Is A Design Brief?</strong></h2>
<p>You&#8217;ve probably asked yourself before: what is a design brief? From the sound of it, it is something that&#8217;s very important to any design project as it is like a guideline for the designer to use to exceed your expectations.</p>
<p>In a design brief, one focuses on the results and outcomes of the design and the business objectives of the design project. You as a client do not need to worry about how it’ll look, that’s the responsibility of the designer. From client’s point of view, the design brief will allow you to focus on exactly what you want to achieve out of the commissioned design project. Writing a good design brief will help and make sure that your project is of high quality and meets all your needs – given that you’ve chosen the right designer.</p>
<h2><strong>Second: How To Write An Effective Design Brief?</strong></h2>
<p>By answering questions below in detail and ordered manner will only get your design brief up to about 90%, the other 10% of the questions will come from the designer. Answering questions doesn’t mean one line answers, give as much information as possible.</p>
<ul>
<li>What does your business do? (Don’t assume that designer knows anything and/or everything about your company. Be clear.)</li>
<li>What does your company / organization do? What is your company’s history?</li>
<li>What are the goals? Why? What is the overall goal of the new design project? What are you trying to communicate and why? Are you trying to sell more products or get awareness of your product / service? How do you differ from your competitors? Do you want to completely reinvent yourself or are you simply updating your promotional material?</li>
</ul>
<p>If you got any marketing material from your company, provide it to the designer.</p>
<h2><strong>Who is the target market?</h2>
<p></strong></p>
<p>What&#8217;s your main audience&#8217;s demographic, i.e. profile of your clients? Got multiple audiences that you&#8217;re trying to get, rank them in importance.</p>
<h2><strong>What content is needed, i.e. text and pictures?</h2>
<p></strong></p>
<ul>
<li>What do you want to see in the design?</li>
<li>Who&#8217;s providing the content?</li>
</ul>
<p>As a client, you must clearly state who will provide the content, since dealing with pictures and text will touch the subject of copywriting, so might need to get a professional photographer and/or copywriter.</p>
<h2><strong>What are the specifications?</h2>
<p></strong></p>
<ul>
<li>Size of the design.</li>
<li>Is it for print? Is it for web? How is it going to be used?</li>
</ul>
<h2><strong>Do you have a point of reference for the design?</h2>
<p></strong></p>
<p>Setting a benchmark for the designer by providing relevant design work will definitely help out. Tell the designer what not to do or do and things that you do or don&#8217;t want to see in your design &#8211; that will avoid the dissatisfaction on your behalf.</p>
<h2><strong>What&#8217;s your budget?</h2>
<p></strong></p>
<p>Giving designer a budget to work with helps with maximizing valuable time and resources.</p>
<h2><strong>What&#8217;s your deadline?</h2>
<p></strong></p>
<p>When giving a schedule to the designer, set a realistic deadline. When setting a schedule, think of various stages of the project &#8211; consultation, concept design, actual production and the final delivery. Rushing the project will not help anyone and mistakes will happen. If project is on a rush, let the designer know upfront.</p>
<p>Hopefully after reading article above, it&#8217;ll be clear for your as to what the design brief is and will help you write a better one next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aliusdesigns.com/blog/design-brief-get-the-design-you-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

