<?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>DesignDisease | Web and Graphic Design Blog</title>
	<atom:link href="https://designdisease.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://designdisease.com</link>
	<description>DesignDisease provides cost-effective Web design services focused on usability, accessibility and Web standards.</description>
	<lastBuildDate>Sun, 24 Aug 2014 09:36:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
<site xmlns="com-wordpress:feed-additions:1">25772976</site>	<item>
		<title>WordPress Responsive Drop Down Menu Tutorial</title>
		<link>https://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/</link>
					<comments>https://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/#comments</comments>
		
		<dc:creator><![CDATA[Russell Taylor]]></dc:creator>
		<pubDate>Sun, 24 Aug 2014 08:22:31 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=4243</guid>

					<description><![CDATA[<p>Today I will be walking you through how to create a custom drop down menu in WordPress. We will be using the WordPress menu system to control the structure of the menu and then applying our own custom styles to the WordPress theme.</p>
<p>The menu I will be explaining is fully responsive and works with touch devices, so there is a little bit of jQuery code needed to make sure everything is cross browser compatible.</p>
<p><a href="http://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/"><img src="http://designdisease.com/wp-content/uploads/2014/07/wordpress_3.png" alt="Wordpress Drop Down Menu" class="alignnone size-full wp-image-4261" /></a></p>
<p>The post <a href="https://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/">WordPress Responsive Drop Down Menu Tutorial</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Today I will be walking you through how to create a custom drop down menu in WordPress. We will be using the WordPress menu system to control the structure of the menu and then applying our own custom styles to the WordPress theme.</p>
<p>The menu I will be explaining is fully responsive and works with touch devices, so there is a little bit of jQuery code needed to make sure everything is cross browser compatible.</p>
<h3>Demo</h3>
<p>Here is what our menu is going to look like when we are finished. Resize the screen to see what the responsive version looks like.</p>
<p><a href="/wp-content/uploads/demos/responsive-menu/index.html">View Demo</a></p>
<h3>Requirements</h3>
<ul>
<li>Ability to edit your theme&#8217;s functions.php file</li>
<li>Ability to upload files to your theme&#8217;s directory.</li>
<li>Basic understanding of CSS and PHP</li>
</ul>
<h3>Create a Menu in WordPress</h3>
<p>Before we can start styling our menu, we need to first create the HTLM structure using the WordPress menu system. You probably already have a menu built in WordPress, but if you don&#8217;t head over to <strong>Appearance &gt; Menus</strong> and create one. WordPress provides a easy to use interface to allows you to drag and drop menu items into a hierarchy. When you are done creating your menu structure, give the menu a name and then save it.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2014/07/wordpress_1.png"><img fetchpriority="high" decoding="async" width="974" height="506" src="http://designdisease.com/wp-content/uploads/2014/07/wordpress_1.png" alt="Wordpress Menu System" class="alignnone size-full wp-image-4259" srcset="https://designdisease.com/wp-content/uploads/2014/07/wordpress_1.png 974w, https://designdisease.com/wp-content/uploads/2014/07/wordpress_1-300x155.png 300w" sizes="(max-width: 974px) 100vw, 974px" /></a></p>
<h3>A Custom Walker Class</h3>
<p>Before adding our CSS and jQuery to the menu, we first need to make sure that the HTML being outputted for the menu is nice and clean. I&#8217;ve created a custom <a href="http://codex.wordpress.org/Class_Reference/Walker" title="WordPress Walker Class">WordPress Walker Class</a> that does just that. The WordPress Walker Class takes the structure of your menu and then prints out the corresponding HTML. The Walker class below makes sure we have nice, clean HTML to work with and that our menu items have the correct CSS classes assigned to them.</p>
<p>To use this Walker class, simply copy and paste it to the bottom of your theme&#8217;s <strong>functions.php</strong> file. If you don&#8217;t see a <strong>functions.php</strong> file, then create one and paste the code in.</p>
<pre class="lang:php decode:true ">
class CSS_Menu_Walker extends Walker {

  var $db_fields = array( 'parent' =&gt;; 'menu_item_parent', 'id' =&gt; 'db_id' );
  
  function start_lvl( &amp;$output, $depth = 0, $args = array() ) {
    $indent = str_repeat("\t", $depth);
    $output .= "\n$indent&lt;ul&gt;\n";
  }
  
  function end_lvl( &amp;$output, $depth = 0, $args = array() ) {
    $indent = str_repeat("\t", $depth);
    $output .= "$indent&lt;/ul&gt;\n";
  }
  
  function start_el( &amp;$output, $item, $depth = 0, $args = array(), $id = 0 ) {
  
    global $wp_query;
    $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
    $class_names = $value = ''; 
    $classes = empty( $item-&gt;classes ) ? array() : (array) $item-&gt;classes;
    
    /* Add active class */
    if(in_array('current-menu-item', $classes)) {
      $classes[] = 'active';
      unset($classes['current-menu-item']);
    }
    
    /* Check for children */
    $children = get_posts(array('post_type' =&gt; 'nav_menu_item', 'nopaging' =&gt; true, 'numberposts' =&gt; 1, 'meta_key' =&gt;'_menu_item_menu_item_parent', 'meta_value' =&gt; $item-&gt;ID));
    if (!empty($children)) {
      $classes[] = 'has-sub';
    }
    
    $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
    $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
    
    $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item-&gt;ID, $item, $args );
    $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
    
    $output .= $indent . '&lt;li' . $id . $value . $class_names .'&gt;';
    
    $attributes  = ! empty( $item-&gt;attr_title ) ? ' title="'  . esc_attr( $item-&gt;attr_title ) .'"' : '';
    $attributes .= ! empty( $item-&gt;target )     ? ' target="' . esc_attr( $item-&gt;target     ) .'"' : '';
    $attributes .= ! empty( $item-&gt;xfn )        ? ' rel="'    . esc_attr( $item-&gt;xfn        ) .'"' : '';
    $attributes .= ! empty( $item-&gt;url )        ? ' href="'   . esc_attr( $item-&gt;url        ) .'"' : '';
    
    $item_output = $args-&gt;before;
    $item_output .= '&lt;a'. $attributes .'&gt;&lt;span&gt;';
    $item_output .= $args-&gt;link_before . apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID ) . $args-&gt;link_after;
    $item_output .= '&lt;/span&gt;&lt;/a&gt;';
    $item_output .= $args-&gt;after;
    
    $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
  }
  
  function end_el( &amp;$output, $item, $depth = 0, $args = array() ) {
    $output .= "&lt;/li&gt;\n";
  }
}  </pre>
<h3>Print the Menu</h3>
<p>Now we need to print out our menu using the <strong>wp_nav_menu()</strong> function. Where ever you place this next bit of code is where you menu will be printed out. I&#8217;m using one of the default themes so I&#8217;m printing my menu in the <strong>header.php</strong> file. This will be different for you though  depending on where you want your menu to show up.</p>
<p>Using PHP we will pass this function the parameters of our menu so that it can print out the HTML structure. The <strong>&#8216;menu&#8217;</strong> parameter is the name of the menu you created in WordPress. The <strong>&#8216;container_id&#8217;</strong> will add an ID to the menu&#8217;s containing DIV. The <strong>&#8216;Walker&#8217;</strong> parameter is telling the wp_nav_menu() function to use our custom WordPress walker class to print the HTML.</p>
<pre class="lang:php decode:true ">&lt;?php 
  wp_nav_menu(array(
    'menu' =&gt; 'Main Navigation', 
    'container_id' =&gt; 'cssmenu', 
    'walker' =&gt; new CSS_Menu_Walker()
  )); 
?&gt; </pre>
<p>Once you have placed this code in your theme&#8217;s template file, save the file and then refresh your site in the browsers. We have not added any styles or jQuery so you should see a plain HTML list being printed out like the one below. </p>
<p><a href="http://designdisease.com/wp-content/uploads/2014/07/wordpress_2.png"><img decoding="async" width="587" height="476" src="http://designdisease.com/wp-content/uploads/2014/07/wordpress_2.png" alt="wordpress_2" class="alignnone size-full wp-image-4260" srcset="https://designdisease.com/wp-content/uploads/2014/07/wordpress_2.png 587w, https://designdisease.com/wp-content/uploads/2014/07/wordpress_2-300x243.png 300w" sizes="(max-width: 587px) 100vw, 587px" /></a></p>
<h3>The CSS</h3>
<p>Now we need to add the CSS styles to our menu so open up your themes CSS file.  It might be in a folder called <strong>css/styles.css</strong> or just a file in the root directory of the theme. I&#8217;ll break up the CSS to explain it a little bit, but you can also skip ahead and just copy and paste all the code in at one time.</p>
<p>Notice that we are using CSS ID that we specified in the wp_nav_menu() function, <strong>#cssmenu</strong>.</p>
<p>This first bit of CSS takes care of the browser resets so that everything is uniform. We are also using the free Google Font PT Sans that we are importing at the top of our file.</p>
<pre class="lang:css decode:true ">@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700);
#cssmenu {
  background: #4cb6ea;
  margin: 0;
  width: auto;
  padding: 0;
  line-height: 1;
  display: block;
  position: relative;
  font-family: 'PT Sans', sans-serif;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;  
}</pre>
<p>This next chunk of CSS will take care of the majority of our menu&#8217;s styles. I wont go over it all in detail, feel free to ask questions in the comments about any part that you don&#8217;t understand. </p>
<pre class="lang:css decode:true ">#cssmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
#cssmenu ul:after,
#cssmenu:after {
  content: ' ';
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
#cssmenu ul li {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
#cssmenu ul li a {
  text-decoration: none;
  display: block;
  margin: 0;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu ul li ul {
  position: absolute;
  left: -9999px;
  top: auto;
}
#cssmenu ul li ul li {
  max-height: 0;
  position: absolute;
  -webkit-transition: max-height 0.4s ease-out;
  -moz-transition: max-height 0.4s ease-out;
  -ms-transition: max-height 0.4s ease-out;
  -o-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
  background: #ffffff;
}
#cssmenu ul li ul li.has-sub:after {
  display: block;
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background: #000000;
  z-index: 1;
  top: 13px;
  right: 15px;
}
#cssmenu.align-right ul li ul li.has-sub:after {
  right: auto;
  left: 15px;
}
#cssmenu ul li ul li.has-sub:before {
  display: block;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  border: 3px solid transparent;
  border-left-color: #ffffff;
  z-index: 2;
  top: 15px;
  right: 15px;
}
#cssmenu.align-right ul li ul li.has-sub:before {
  right: auto;
  left: 15px;
  border-left-color: transparent;
  border-right-color: #ffffff;
}
#cssmenu ul li ul li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: #000000;
  letter-spacing: 0;
  display: block;
  width: 170px;
  padding: 11px 10px 11px 20px;
}
#cssmenu ul li ul li:hover &gt; a,
#cssmenu ul li ul li.active &gt; a {
  color: #4cb6ea;
}
#cssmenu ul li ul li:hover:after,
#cssmenu ul li ul li.active:after {
  background: #4cb6ea;
}
#cssmenu ul li ul li:hover &gt; ul {
  left: 100%;
  top: 0;
}
#cssmenu ul li ul li:hover &gt; ul &gt; li {
  max-height: 72px;
  position: relative;
}
#cssmenu &gt; ul &gt; li {
  float: left;
}
#cssmenu.align-center &gt; ul &gt; li {
  float: none;
  display: inline-block;
}
#cssmenu.align-center &gt; ul {
  text-align: center;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right &gt; ul {
  float: right;
}
#cssmenu.align-right &gt; ul &gt; li:hover &gt; ul {
  left: auto;
  right: 0;
}
#cssmenu.align-right ul ul li:hover &gt; ul {
  right: 100%;
  left: auto;
}
#cssmenu.align-right ul ul li a {
  text-align: right;
}
#cssmenu &gt; ul &gt; li:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  z-index: 0;
  background: #ffffff;
  -webkit-transition: height .2s;
  -moz-transition: height .2s;
  -ms-transition: height .2s;
  -o-transition: height .2s;
  transition: height .2s;
}
#cssmenu &gt; ul &gt; li.has-sub &gt; a {
  padding-right: 40px;
}
#cssmenu &gt; ul &gt; li.has-sub &gt; a:after {
  display: block;
  content: '';
  background: #ffffff;
  height: 12px;
  width: 12px;
  position: absolute;
  border-radius: 13px;
  right: 14px;
  top: 16px;
}
#cssmenu &gt; ul &gt; li.has-sub &gt; a:before {
  display: block;
  content: '';
  border: 4px solid transparent;
  border-top-color: #4cb6ea;
  z-index: 2;
  height: 0;
  width: 0;
  position: absolute;
  right: 16px;
  top: 21px;
}
#cssmenu &gt; ul &gt; li &gt; a {
  color: #ffffff;
  padding: 15px 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  z-index: 2;
  position: relative;
}
#cssmenu &gt; ul &gt; li:hover:after,
#cssmenu &gt; ul &gt; li.active:after {
  height: 100%;
}
#cssmenu &gt; ul &gt; li:hover &gt; a,
#cssmenu &gt; ul &gt; li.active &gt; a {
  color: #000000;
}
#cssmenu &gt; ul &gt; li:hover &gt; a:after,
#cssmenu &gt; ul &gt; li.active &gt; a:after {
  background: #000000;
}
#cssmenu &gt; ul &gt; li:hover &gt; a:before,
#cssmenu &gt; ul &gt; li.active &gt; a:before {
  border-top-color: #ffffff;
}
#cssmenu &gt; ul &gt; li:hover &gt; ul {
  left: 0;
}
#cssmenu &gt; ul &gt; li:hover &gt; ul &gt; li {
  max-height: 72px;
  position: relative;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu &gt; ul &gt; li &gt; a {
  display: block;
}
#cssmenu &gt; ul &gt; li {
  width: auto;
}
#cssmenu &gt; ul &gt; li &gt; ul {
  width: 170px;
  display: block;
}
#cssmenu &gt; ul &gt; li &gt; ul &gt; li {
  width: 170px;
  display: block;
}</pre>
<p>If everything has been done correctly, your should have a completely functioning drop down menu. If your menu doesn&#8217;t look like the image below, go back and double check your CSS styles.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2014/07/wordpress_3.png"><img decoding="async" width="549" height="368" src="http://designdisease.com/wp-content/uploads/2014/07/wordpress_3.png" alt="Wordpress Drop Down Menu" class="alignnone size-full wp-image-4261" srcset="https://designdisease.com/wp-content/uploads/2014/07/wordpress_3.png 549w, https://designdisease.com/wp-content/uploads/2014/07/wordpress_3-300x201.png 300w" sizes="(max-width: 549px) 100vw, 549px" /></a></p>
<p>Now that we have your basic menu styles in place we need to create the CSS styles that will take effect for mobile devices. This is the responsive part of the tutorial. We will be using Media Queries to specify which styles kick in and at what screen width.</p>
<pre class="lang:css decode:true ">@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu &gt; ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease-out;
    -moz-transition: max-height 0.35s ease-out;
    -ms-transition: max-height 0.35s ease-out;
    -o-transition: max-height 0.35s ease-out;
    transition: max-height 0.35s ease-out;
  }
  #cssmenu &gt; ul &gt; li &gt; ul {
    width: 100%;
    display: block;
  }
  #cssmenu.align-right ul li a {
    text-align: left;
  }
  #cssmenu &gt; ul &gt; li &gt; ul &gt; li {
    width: 100%;
    display: block;
  }
  #cssmenu.align-right ul ul li a {
    text-align: left;
  }
  #cssmenu &gt; ul &gt; li &gt; ul &gt; li &gt; a {
    width: 100%;
    display: block;
  }
  #cssmenu ul li ul li a {
    width: 100%;
  }
  #cssmenu.align-center &gt; ul {
    text-align: left;
  }
  #cssmenu.align-center &gt; ul &gt; li {
    display: block;
  }
  #cssmenu &gt; ul.open {
    max-height: 1000px;
    border-top: 1px solid rgba(110, 110, 110, 0.25);
  }
  #cssmenu ul {
    width: 100%;
  }
  #cssmenu ul &gt; li {
    float: none;
    width: 100%;
  }
  #cssmenu ul li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 20px;
  }
  #cssmenu ul &gt; li:after {
    display: none;
  }
  #cssmenu ul li.has-sub &gt; a:after,
  #cssmenu ul li.has-sub &gt; a:before,
  #cssmenu ul li ul li.has-sub:after,
  #cssmenu ul li ul li.has-sub:before {
    display: none;
  }
  #cssmenu ul li ul,
  #cssmenu ul li ul li ul,
  #cssmenu ul li ul li:hover &gt; ul,
  #cssmenu.align-right ul li ul,
  #cssmenu.align-right ul li ul li ul,
  #cssmenu.align-right ul li ul li:hover &gt; ul {
    left: 0;
    position: relative;
    right: auto;
  }
  #cssmenu ul li ul li,
  #cssmenu ul li:hover &gt; ul &gt; li {
    max-height: 999px;
    position: relative;
    background: none;
  }
  #cssmenu ul li ul li a {
    padding: 8px 20px 8px 35px;
    color: #ffffff;
  }
  #cssmenu ul li ul ul li a {
    padding: 8px 20px 8px 50px;
  }
  #cssmenu ul li ul li:hover &gt; a {
    color: #000000;
  }
  #cssmenu #menu-button {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    cursor: pointer;
  }
  #cssmenu #menu-button:after {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    right: 20px;
    top: 16px;
  }
  #cssmenu #menu-button:before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #ffffff;
    right: 20px;
    top: 26px;
  }
}</pre>
<p>We wont be able to see our responsive styles until we add a little bit of jQuery. So lets do that first before checking our menu.</p>
<h3>Minimal jQuery</h3>
<p>Next we will need to add the small amount of jQuery below to one of our themes script files. Almost all WordPress themes use jQuery these days so just find the file called <strong>script.js</strong> or possibly <strong>functions.js</strong> and paste the code in. Notice we are using the <strong>#cssmenu</strong> ID again to target our menu.</p>
<pre class="lang:js decode:true ">$( document ).ready(function() {
  $('#cssmenu').prepend('&lt;div id="menu-button"&gt;Menu&lt;/div&gt;');
  $('#cssmenu #menu-button').on('click', function(){
    var menu = $(this).next('ul');
    if (menu.hasClass('open')) {
      menu.removeClass('open');
    } else {
      menu.addClass('open');
    }
  });
});</pre>
<h3>Test it Out</h3>
<p>Save all your files and go back to your browser. To test the responsive styles, resize your browser window to less than 800px. Your menu should look like the image below:</p>
<p><a href="http://designdisease.com/wp-content/uploads/2014/07/wordpress_4.png"><img loading="lazy" decoding="async" width="464" height="396" src="http://designdisease.com/wp-content/uploads/2014/07/wordpress_4.png" alt="wordpress_4" class="alignnone size-full wp-image-4262" srcset="https://designdisease.com/wp-content/uploads/2014/07/wordpress_4.png 464w, https://designdisease.com/wp-content/uploads/2014/07/wordpress_4-300x256.png 300w" sizes="auto, (max-width: 464px) 100vw, 464px" /></a></p>
<p>That&#8217;s it! If everything was done correctly you should have a functioning WordPress responsive drop down menu.</p>
<h3>Troubleshooting</h3>
<p>If your menu doesn&#8217;t seem to be function correctly, or it looks a little off then it is possible you are experiencing residual styling from your WordPress theme. This means that there are other CSS styles in your theme that are conflicting with our menu styles. The only way to fix this problem is to track down the other CSS styles and remove them. Your best bet is to use the Firebug extension for Firefox and inspect the CSS styles manually. Once you find the conflicting styles remove or delete them.</p><p>The post <a href="https://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/">WordPress Responsive Drop Down Menu Tutorial</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/wordpress-responsive-drop-down-menu-tutorial/feed/</wfw:commentRss>
			<slash:comments>52</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4243</post-id>	</item>
		<item>
		<title>Inspirational Gig Poster Design</title>
		<link>https://designdisease.com/inspirational-gig-poster-design/</link>
					<comments>https://designdisease.com/inspirational-gig-poster-design/#comments</comments>
		
		<dc:creator><![CDATA[Elizabeth Barnes]]></dc:creator>
		<pubDate>Wed, 04 Sep 2013 16:41:26 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Inspiration]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=3210</guid>

					<description><![CDATA[<p>How to sum up a mood, a movement and the music in a single image is the challenge graphic designers are faced with the world over. Capturing the personality of a band on a blank canvas can be terrifying, but the usual lack of brief can provide fantastic creative freedom. Designers will be left to use their own style and devices.</p>
<p><a href="http://designdisease.com/inspirational-gig-poster-design/"><img class="alignnone size-full wp-image-3229" alt="poster 3" src="http://designdisease.com/wp-content/uploads/2013/08/poster-3.jpg" width="640" height="947" /></a></p>
<p>The post <a href="https://designdisease.com/inspirational-gig-poster-design/">Inspirational Gig Poster Design</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>How to sum up a mood, a movement and the music in a single image is the challenge graphic designers are faced with the world over. Capturing the personality of a band on a blank canvas can be terrifying, but the usual lack of brief can provide fantastic creative freedom. Designers will be left to use their own style and devices.</p>
<p>For your design inspiration today, we take a look at a selection of standout artwork from some well known and more obscure names in the music world and explore the images, typography and talent it takes to translate their sounds into a striking piece of artwork.</p>
<h3>And You Will Know Us By The Trail Of Dead</h3>
<p>This wild alt-rock outfit, hailing from Austin in Texas, are known for their theatrical live sets, which often result in most of their equipment being destroyed on stage. The chilling image of the skeleton enigmatic of films such as the Witchfinder General and other rural horrors such as The Wicker Man and simply, yet effectively, sums up their chilling name. Similarly the blood red colours and simple typography is reminiscent of films from the early 1960s period. In its colour scheme, simplicity and boldness this poster, designed by James Flames, is a brilliant visualisation of the ethos, musical style and mood of the band.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2013/08/poster-11.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3221" alt="poster 1" src="http://designdisease.com/wp-content/uploads/2013/08/poster-11.jpg" width="640" height="817" srcset="https://designdisease.com/wp-content/uploads/2013/08/poster-11.jpg 640w, https://designdisease.com/wp-content/uploads/2013/08/poster-11-235x300.jpg 235w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<h3>Brain Jonestown Massacre and Primal Scream</h3>
<p>This poster, designed for Brian Jonestown Massacre’s 2009 double-bill with Primal Scream at Club Nokia in Los Angeles, uses typography and illustration to give the psychedelic late 60s a burst of new life. Similar to earlier artwork for bands such as The Grateful Dead and The Byrds, it clearly identifies the two bands major musical influences without falling into the realms of pastiche thanks to a clean colour palette relatively simple illustrative style.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2013/08/poster-2.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3224" alt="poster 2" src="http://designdisease.com/wp-content/uploads/2013/08/poster-2.jpg" width="640" height="853" srcset="https://designdisease.com/wp-content/uploads/2013/08/poster-2.jpg 640w, https://designdisease.com/wp-content/uploads/2013/08/poster-2-225x300.jpg 225w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<h3>Belle and Sebastian</h3>
<p>This Glasgow-based indie-pop band takes its name from the popular 1965 French children’s book by Cecile Aubry. In the use of typography and iconic illustration the artwork clearly tips its hat to Belle and Sebastian’s Gallic origins. Designed to promote their 2010 American tour, it’s a loving homage to French New Wave cinema production, promotion, and the iconographic approach which helped to define French cinema during the late 1950s into the 1960s. The influence of Saul Bass, whose iconic style helped to characterise Hitchcock’s promotional material, is also in evidence in the stark monochromatic stripes, the stylised pen nib and the simple colour scheme of black, white and red.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2013/08/poster-3.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3229" alt="poster 3" src="http://designdisease.com/wp-content/uploads/2013/08/poster-3.jpg" width="640" height="947" srcset="https://designdisease.com/wp-content/uploads/2013/08/poster-3.jpg 640w, https://designdisease.com/wp-content/uploads/2013/08/poster-3-202x300.jpg 202w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<h3>The Shins</h3>
<p>Designed in 2006 by Power House for their 2006 gig at the Crystal Ballroom in Portland, this poster takes the theme of Christmas as its starting point and fuses it with a typically East Coast lo-fi twist. The bleached out colour palette is in check with the band’s earlier albums Chutes too Narrow and Oh, Inverted World, both of which feature a similarly minimalist design-style. The white-out baubles and blanched typography lends a hazy feel to the work, and perfectly accentuates the band’s dreamlike, summery sounds in contrast to the festive theme of the December billing and Christmas conceptualisation.</p>
<p><a href="http://designdisease.com/wp-content/uploads/2013/08/poster-4.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3232" alt="poster 4" src="http://designdisease.com/wp-content/uploads/2013/08/poster-4.jpg" width="640" height="853" srcset="https://designdisease.com/wp-content/uploads/2013/08/poster-4.jpg 640w, https://designdisease.com/wp-content/uploads/2013/08/poster-4-225x300.jpg 225w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>With the digital era at its peak, it’s clear that poster design still lives on, there is nothing more nostalgic and liberating then a good old fashioned poster.   If this post inspires you to go out and make your own posters, I usually<a title="print my posters with YouPrint.com" href="http://www.youprint.com/posters"> print my posters with YouPrint.com</a>. <a href="http://www.youprint.com/posters"><br />
</a></p>
<p>&nbsp;</p><p>The post <a href="https://designdisease.com/inspirational-gig-poster-design/">Inspirational Gig Poster Design</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/inspirational-gig-poster-design/feed/</wfw:commentRss>
			<slash:comments>42</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3210</post-id>	</item>
		<item>
		<title>Branding and Start-Up Tips for Designers</title>
		<link>https://designdisease.com/branding-and-start-up-tips-for-designers/</link>
					<comments>https://designdisease.com/branding-and-start-up-tips-for-designers/#comments</comments>
		
		<dc:creator><![CDATA[Nicky]]></dc:creator>
		<pubDate>Thu, 01 Aug 2013 22:58:52 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=3141</guid>

					<description><![CDATA[<p>Branding is one of the most important things any start-up must think about. After all, it is the way you tell customers who you are and what your company does. Building a good brand takes some thought, but once you’ve thought it out, things like ads and the design of your site can almost create themselves.</p>
<p>For designers who want to create a start-up, finding the right advice on the flooded internet can be overwhelming. We have come up with advice to help get your design start-up off the ground!</p>
<p><a href="http://designdisease.com/branding-and-start-up-tips-for-designers/" title="Branding and Start-Up Tips for Designers"><img src="http://designdisease.com/wp-content/uploads/2013/07/111.jpg" alt="1" width="640" height="497" class="alignnone size-full wp-image-3151" /></a></p>
<p>The post <a href="https://designdisease.com/branding-and-start-up-tips-for-designers/">Branding and Start-Up Tips for Designers</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Branding is one of the most important things any start-up must think about. After all, it is the way you tell customers who you are and what your company does. Building a good brand takes some thought, but once you&#8217;ve thought it out, things like ads and the design of your site can almost create themselves.</p>
<p>For designers who want to create a start-up, finding the right advice on the flooded internet can be overwhelming. We have come up with advice to help get your design start-up off the ground!</p>
<p><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/111.jpg" alt="1" width="640" height="497" class="alignnone size-full wp-image-3151" srcset="https://designdisease.com/wp-content/uploads/2013/07/111.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/111-300x232.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Get a good name</h3>
<p>The first part of building a successful design brand is coming up with a good name for your company. It should be memorable, easy to spell and easy to find in Google search. It should be classic, rather than trendy, since you don’t want to have to re-brand your company every couple of years.</p>
<h3>Create your brand story</h3>
<p>These days, brands have to appeal to people’s emotions as much as they fill people’s needs. That’s why, once you have a company and a name, you need to clarify your brand story. Your brand story could be that you are the little guy, trying to make it in a big industry. You could tell the story of your struggle to set up your company, since people love stories of struggle, triumph and overcoming hurdles.</p>
<h3>Create a brand design</h3>
<p>Once you have determined your name and brand story, it’s time for the design process to begin. Be sure you get a consistent design: your logo, web site, stationery, ads and even your reports and presentation slides should all have a consistent look to reinforce your branding.</p>
<p>As a Start-up company it’s important to work with as little overheads as possible, if you plan to design and develop your own website, there are many online tools such as the whoishostingthis.com <a href="http://www.whoishostingthis.com/compare/">web host comparison tool</a> and the <a href="http://99designs.co.uk/">design market place </a>99 designs that can help you cut costs on creating a website.  </p>
<h3>Distinguish yourself from your competitors</h3>
<p>If you haven’t thought of this already, you need to define your unique selling point, also known as your USP. Is there a gap in a market that you are seeking to fill? Is there something you can do to make your design company completely unique? Is there a trick your competitors are missing? What will client get from you that they won’t get elsewhere? </p>
<p>Once you&#8217;ve determined what makes your company different, you should condense that into one sentence. Make it clear and simple, and make it easy for potential customers to discover your USP.</p>
<p>Now it is time to truly set yourself apart from your competitors. Compare your prices, trustworthiness, value for money or even your ethical standards to theirs. You don’t have to bad-mouth your competitors to do this. Simply point out what you do, and leave it at that.</p>
<h3>Build your brand visibility </h3>
<p>Now it is time to get your brand in front of the right people. Identify your most profitable clients, then figure out which channels you need to go through to reach them and how frequently you should try to connect with them.</p>
<p>Establish your online presence. Buy a .com, .co.uk, or equivalent <a href="http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains">national domain</a>. Anything else, like .org or .net, doesn&#8217;t seem as professional at first, and it will take longer for people to take your brand seriously. Then get the social media profiles that you need. Don’t get a social media profile just because it is there. Facebook and Twitter are not necessarily going to provide a firm return on your investment, so they may not be worth your time. On the other hand, not having profiles might make you look less professional.</p>
<p>Start establishing your credibility. Do this by making connections between your company and  established companies or respected individuals, especially when you are discussing the work you have done. If you can get recommendations from them, that is even better. You can also establish credibility through quality research that you publish on your website and through your social media profiles. This can be research you have done on your own, or you can hire a professional company to conduct a survey on your behalf. You can also participate in industry conferences, and try to get speaking engagements at them. </p>
<p>To publicize these efforts, regularly publish newsletters and press releases. You can also get some publicity by participating in and sponsoring charity events or activities. If you can get your company name in the programs and ads for the charities, as well as the press surrounding the events, you get some valuable publicity and your brand becomes more visible.</p>
<p>If you do all of these things, you should have a well-established design brand in practically no time.</p><p>The post <a href="https://designdisease.com/branding-and-start-up-tips-for-designers/">Branding and Start-Up Tips for Designers</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/branding-and-start-up-tips-for-designers/feed/</wfw:commentRss>
			<slash:comments>54</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3141</post-id>	</item>
		<item>
		<title>20 Office Supplies Perfect for Designers</title>
		<link>https://designdisease.com/20-office-supplies-perfect-for-designers/</link>
					<comments>https://designdisease.com/20-office-supplies-perfect-for-designers/#comments</comments>
		
		<dc:creator><![CDATA[Nicky]]></dc:creator>
		<pubDate>Tue, 30 Jul 2013 10:30:55 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[office]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=3066</guid>

					<description><![CDATA[<p>Designers are creative, visual people who make the everyday world a more interesting, inspiring place to be, so it’s odd that so many have to work in boring office environments. Luckily, multitudes of office supplies that seem to be made specifically for designers are popping up everywhere. If you are a designer, below are 25 office supplies that you will have a hard time living without.</p>
<p><a href="http://designdisease.com/20-office-supplies-perfect-for-designers/"><img src="http://designdisease.com/wp-content/uploads/2013/07/12.jpg" alt="12" width="640" height="381" class="alignnone size-full wp-image-3106" /></a></p>
<p>The post <a href="https://designdisease.com/20-office-supplies-perfect-for-designers/">20 Office Supplies Perfect for Designers</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Designers are creative, visual people who make the everyday world a more interesting, inspiring place to be, so it’s odd that so many have to work in boring office environments. Luckily, multitudes of office supplies that seem to be made specifically for designers are popping up everywhere. If you are a designer, below are 25 office supplies that you will have a hard time living without.</p>
<p>No matter what kind of designer you are or what kind of office you want, you need some space to doodle and let your creative mind free. Crucial to that blank notebook, ready to spark the imagination, like the <a href="http://www.thinkofthe.com/product.php?name=walls-notebook">Walls Notebook</a>, which features photos of blank walls.</p>
<p><a href="http://www.thinkofthe.com/media/images/products/walls-notebook/774/walls-notebook-5.jpg"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/1.jpg" alt="1" width="640" height="400" class="alignnone size-full wp-image-3067" srcset="https://designdisease.com/wp-content/uploads/2013/07/1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/1-300x187.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>A clean desk is a happy desk, and a clutter-free space will leave you free to concentrate on your work. An organizer like the <a href="http://www.thinkgeek.com/product/11f1/">Pen Zen desk </a>organizer will allow you to story all your pens and pencils, whatever their size, in an attractive, orderly way.</p>
<p><a href="http://www.thinkgeek.com/product/11f1/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/2.jpg" alt="2" width="640" height="633" class="alignnone size-full wp-image-3070" srcset="https://designdisease.com/wp-content/uploads/2013/07/2.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/2-300x296.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>The <a href="http://www.vitra.com/en-gb/product/utensilo">Uten.Silo</a> wall organizer is a classic example of great product design. You can use it both as inspiration and as a place to store your various bits and bobs.</p>
<p><a href="http://www.vitra.com/en-gb/product/utensilo"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/3.jpg" alt="3" width="640" height="694" class="alignnone size-full wp-image-3073" srcset="https://designdisease.com/wp-content/uploads/2013/07/3.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/3-276x300.jpg 276w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Even in this increasingly digital world, you will have to open a letter at some point. Use the <a href="http://store.alessi.com/gbr/en-gb/catalog/detail/stila-paper-knife/hr03">Stila paper</a> knife to stylishly save your hands from paper cuts.</p>
<p><a href="http://store.alessi.com/gbr/en-gb/catalog/detail/stila-paper-knife/hr03"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/4.jpg" alt="4" width="640" height="426" class="alignnone size-full wp-image-3076" srcset="https://designdisease.com/wp-content/uploads/2013/07/4.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/4-300x199.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>The <a href="http://www.kidrobot.com/ShopAll/DesignerToys/DoItYourselfToys/MUNNY7InchWhiteEdition.html">Munny vinyl doll</a> might seem like just a toy, but like the notebook above, it can open up creative channels. Like the wall organizer, it is a design classic. And this seven-inch version gives you even more space to doodle.</p>
<p><a href="http://www.kidrobot.com/ShopAll/DesignerToys/DoItYourselfToys/MUNNY7InchWhiteEdition.html"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/5.jpg" alt="5" width="640" height="426" class="alignnone size-full wp-image-3079" srcset="https://designdisease.com/wp-content/uploads/2013/07/5.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/5-300x199.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Everyone needs an <a href="http://www.etsy.com/uk/listing/127432593/vintage-office-desk-tray-in-out-wire?ref=sr_gallery_17&amp;ga_search_query=office+desk&amp;ga_view_type=gallery&amp;ga_ship_to=GB&amp;ga_page=3&amp;ga_search_type=all&amp;ga_facet=office+desk">old-school in tray</a>. That’s just a fact. But it can help designers keep their papers in order without looking too corporate.</p>
<p><a href="http://www.etsy.com/uk/listing/127432593/vintage-office-desk-tray-in-out-wire?ref=sr_gallery_17&amp;ga_search_query=office+desk&amp;ga_view_type=gallery&amp;ga_ship_to=GB&amp;ga_page=3&amp;ga_search_type=all&amp;ga_facet=office+desk"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/6.jpg" alt="6" width="640" height="426" class="alignnone size-full wp-image-3084" srcset="https://designdisease.com/wp-content/uploads/2013/07/6.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/6-300x199.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>The <a href="http://blog.sharpie.com/2010/08/introducing-the-new-sharpie-liquid-pencil/">Sharpie Liquid Pencil</a> is not exactly cheap, but it is amazing. The liquid graphite filling goes on paper like ink, is erasable like pencil and after three days, is permanent like permanent marker. </p>
<p><a href="http://blog.sharpie.com/2010/08/introducing-the-new-sharpie-liquid-pencil/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/7.jpg" alt="7" width="640" height="687" class="alignnone size-full wp-image-3088" srcset="https://designdisease.com/wp-content/uploads/2013/07/7.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/7-279x300.jpg 279w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>When you have a lot of gadgets, keeping track of cords can feel like it takes up the better part of an afternoon. Use something like the Cordies cable organizer to keep all your cords tidy and in place.</p>
<p><a href="http://www.thinkgeek.com/product/d500/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/8.jpg" alt="8" width="640" height="537" class="alignnone size-full wp-image-3093" srcset="https://designdisease.com/wp-content/uploads/2013/07/8.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/8-300x251.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>It might not be the most polite of boxes, but when you have a lot of junk you need to keep track of, the Crap storage box is exactly where it should go.</p>
<p><a href="http://www.knockknockstuff.com/catalog/categories/organizers/storage-boxes/more-crap-large-box/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/9.jpg" alt="9" width="640" height="469" class="alignnone size-full wp-image-3096" srcset="https://designdisease.com/wp-content/uploads/2013/07/9.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/9-300x219.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>How many times have you stared at your staple remover, imagining the fantastical creatures it could be? Well, Jac Zagoory took that idea and ran, creating a series of stapler removers in the shapes of animal heads including this <a href="http://www.jzpen.com/products/lions-roar-remover">majestic lion head</a>.</p>
<p><a href="http://www.jzpen.com/products/lions-roar-remover"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/10.jpg" alt="10" width="640" height="325" class="alignnone size-full wp-image-3100" srcset="https://designdisease.com/wp-content/uploads/2013/07/10.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/10-300x152.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>A <a href="http://www.poppin.com/West-18th-File-Cabinet-White-LimeGreen.html">file cabinet</a> is a necessary addition to any office, and this one is ideal for the designer drawn to minimalist shapes and modern pops of color.</p>
<p><a href="http://www.poppin.com/West-18th-File-Cabinet-White-LimeGreen.html"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/11.jpg" alt="11" width="640" height="484" class="alignnone size-full wp-image-3103" srcset="https://designdisease.com/wp-content/uploads/2013/07/11.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/11-300x226.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>The <a href="http://www.haginc.com/products/hag-capisco/hag-capisco-8127/">Capisco chair </a>may seem like an ordinary, ergonomic desk chair, and in most ways, it is. But it has a feature unlike any chair out there: you can sit in almost any position comfortably. Do you want to sit with your side against the back of the chair? Do you want to swing it around and sit in it backwards? Do you want to climb all over it? This chair is designed to handle it all.</p>
<p><a href="http://www.haginc.com/products/hag-capisco/hag-capisco-8127/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/12.jpg" alt="12" width="640" height="381" class="alignnone size-full wp-image-3106" srcset="https://designdisease.com/wp-content/uploads/2013/07/12.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/12-300x178.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>If you need to be able to draw with flexibility and accuracy, you need a <a href="http://www.monocomplex.com/work_product_freeformruler.html">free form ruler </a>like this one. As you draw, it keeps track of how long you&#8217;ve drawn, so you know the exact length of whatever you&#8217;ve drawn.</p>
<p><a href="http://www.monocomplex.com/work_product_freeformruler.html"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/13.jpg" alt="13" width="640" height="308" class="alignnone size-full wp-image-3109" srcset="https://designdisease.com/wp-content/uploads/2013/07/13.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/13-300x144.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>An angled lamp always comes in handy, and few mix style with function quite like this <a href="http://www.cb2.com/task-lighting/office/carpenter-chrome-lamp/f8588">Carpenter chrome lamp</a>.</p>
<p><a href="http://www.cb2.com/task-lighting/office/carpenter-chrome-lamp/f8588"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/14.jpg" alt="14" width="640" height="640" class="alignnone size-full wp-image-3112" srcset="https://designdisease.com/wp-content/uploads/2013/07/14.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/14-150x150.jpg 150w, https://designdisease.com/wp-content/uploads/2013/07/14-300x300.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p><a href="https://www.kayiwa.fi/eshop/goods/aakkoset/">The Aakkoset bookshelf</a> is not exactly cheap, but it is a heart-stopping way to keep your books and reference materials organised. It can even act as a room divider, if you want a gorgeous way to mark out your home office space in your flat.</p>
<p><a href="https://www.kayiwa.fi/eshop/goods/aakkoset/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/15.jpg" alt="15" width="640" height="832" class="alignnone size-full wp-image-3113" srcset="https://designdisease.com/wp-content/uploads/2013/07/15.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/15-230x300.jpg 230w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Sometimes dealing with vague briefs, incoherent client demands and conflicting feedback can be too much even for the most patient designers. The <a href="http://www.thinkgeek.com/product/e8f1/">infectious Disease stress</a> ball is a tactile way for you to get the bad feelings out without getting in trouble. Plus, the color combinations are pretty cool. </p>
<p><a href="http://www.thinkgeek.com/product/e8f1/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/16.jpg" alt="16" width="640" height="410" class="alignnone size-full wp-image-3114" srcset="https://designdisease.com/wp-content/uploads/2013/07/16.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/16-300x192.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>As a designer, you really can’t have too many ways of storing inspirational bits and bobs, various pens and pencils and other important whatnots. Small wooden drawers like <a href="http://www.ikea.com/gb/en/catalog/products/40216357/">these</a> can keep the miscellaneous stored away nicely.</p>
<p><a href="http://www.ikea.com/gb/en/catalog/products/40216357/"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/17.jpg" alt="17" width="640" height="410" class="alignnone size-full wp-image-3115" srcset="https://designdisease.com/wp-content/uploads/2013/07/17.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/17-300x192.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>If you like to have a <a href="http://www.amazon.com/USB-Powered-Fridge-Cooler-Beverage-Cubicle/dp/B000XYN5RS">cold beverage</a> while you work, this USB mini fridge is great. Plus, it looks like an old timey ice box, which is charming.</p>
<p><a href="http://www.amazon.com/USB-Powered-Fridge-Cooler-Beverage-Cubicle/dp/B000XYN5RS"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/18.jpg" alt="18" width="640" height="500" class="alignnone size-full wp-image-3118" srcset="https://designdisease.com/wp-content/uploads/2013/07/18.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/18-300x234.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Why have boring yellow sticky notes when you can use Talk to the <a href="http://fredandfriends.com/products/view/talk-to-the-hand-sticky-notes">Hand sticky notes</a>? They are a great way to take down messages or quick notes, and the fact that they will remind you of school days when someone would write their number on your hand is just a bonus.</p>
<p><a href="http://fredandfriends.com/products/view/talk-to-the-hand-sticky-notes"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/19.jpg" alt="19" width="640" height="456" class="alignnone size-full wp-image-3119" srcset="https://designdisease.com/wp-content/uploads/2013/07/19.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/19-300x213.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Seriously, a designer can’t have too many interesting storage options. <a href="//www.thinkgeek.com/product/edac/">Small Lego storage boxes</a> are a great way to keep those pedestrian office supplies you still have to use out of your direct eye line.</p>
<p><a href="http://a.tgcdn.net/images/products/frontsquare/edac_lego_mini_boxes.jpg"><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/07/20.jpg" alt="20" width="640" height="285" class="alignnone size-full wp-image-3120" srcset="https://designdisease.com/wp-content/uploads/2013/07/20.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/20-300x133.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></a></p>
<p>Good luck with going back to your old desk without getting at least one of these things, designers!</p><p>The post <a href="https://designdisease.com/20-office-supplies-perfect-for-designers/">20 Office Supplies Perfect for Designers</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/20-office-supplies-perfect-for-designers/feed/</wfw:commentRss>
			<slash:comments>23</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3066</post-id>	</item>
		<item>
		<title>Create a RedBox Website Template: Tutorial &#038; PSD</title>
		<link>https://designdisease.com/create-a-redbox-website-template-tutorial-psd/</link>
					<comments>https://designdisease.com/create-a-redbox-website-template-tutorial-psd/#comments</comments>
		
		<dc:creator><![CDATA[Adam]]></dc:creator>
		<pubDate>Fri, 05 Jul 2013 21:56:09 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2982</guid>

					<description><![CDATA[<p>In this tutorial you will learn how to create a website template called RedBox. The template is theme based on a web agency but could be used for any type of business. The way the template is designed allows it to be developed responsively. You will also be able to download the Photoshop file at the end of the tutorial.</p>
<p><a href="http://designdisease.com/create-a-redbox-website-template-tutorial-psd/"><img src="http://designdisease.com/wp-content/uploads/2013/07/site.jpg" alt="RedBox PSD Template" width="640" height="731" class="alignnone size-full wp-image-3020" /></a></p>
<p>The post <a href="https://designdisease.com/create-a-redbox-website-template-tutorial-psd/">Create a RedBox Website Template: Tutorial & PSD</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>In this tutorial you will learn how to create a website template called RedBox. The template is theme based on a web agency but could be used for any type of business. The way the template is designed allows it to be developed responsively. You will also be able to download the Photoshop file at the end of the tutorial.</p>
<p>The Redbox PSD template looks like this:</p>
<p>Here is the tutorial on how to make a template like the RedBox:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3020" alt="site" src="http://designdisease.com/wp-content/uploads/2013/07/site.jpg" width="640" height="731" srcset="https://designdisease.com/wp-content/uploads/2013/07/site.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/site-262x300.jpg 262w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 1.</h3>
<p>Open a new file (file &gt; new) 1400 x 1600 pixels</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2995" alt="img-size" src="http://designdisease.com/wp-content/uploads/2013/07/img-size.jpg" width="529" height="362" srcset="https://designdisease.com/wp-content/uploads/2013/07/img-size.jpg 529w, https://designdisease.com/wp-content/uploads/2013/07/img-size-300x205.jpg 300w" sizes="auto, (max-width: 529px) 100vw, 529px" /></p>
<h3>Step 2.</h3>
<p>Create 2 vertical guides (view &gt; new guide) 1 at 200px &amp; 1 at 1200px. This is the centre and guides of your design.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3014" alt="guide" src="http://designdisease.com/wp-content/uploads/2013/07/guide1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/guide1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/guide1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 3.</h3>
<p>Using the rectangle marque tool change the style to fixed size at 1400 x 120 pixels.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3017" alt="marque" src="http://designdisease.com/wp-content/uploads/2013/07/marque1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3015" alt="marque-size" src="http://designdisease.com/wp-content/uploads/2013/07/marque-size1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque-size1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque-size1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p>&nbsp;</p>
<h3>Step 4.</h3>
<p>Fill using paint bucket tool the margue box with colour #2A2E39</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3008" alt="blue-c" src="http://designdisease.com/wp-content/uploads/2013/07/blue-c.jpg" width="563" height="322" srcset="https://designdisease.com/wp-content/uploads/2013/07/blue-c.jpg 563w, https://designdisease.com/wp-content/uploads/2013/07/blue-c-300x171.jpg 300w" sizes="auto, (max-width: 563px) 100vw, 563px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3021" alt="paintbucket" src="http://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/paintbucket2-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 5.</h3>
<p>Add your logo to the left guide in the new header.</p>
<h3>Step 6.</h3>
<p>Add your navigation to the right of the page using the type tool.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3019" alt="textedit" src="http://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/textedit1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 7.</h3>
<p>Create a 200 x 200 box using the rectangle marque tool and postion under a navigation as a drop down.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3017" alt="marque" src="http://designdisease.com/wp-content/uploads/2013/07/marque1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 8.</h3>
<p>Fill the box with colour #e74e4e then add your sub navigation with type tool.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3006" alt="red-colour" src="http://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg" width="563" height="323" srcset="https://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg 563w, https://designdisease.com/wp-content/uploads/2013/07/red-colour-300x172.jpg 300w" sizes="auto, (max-width: 563px) 100vw, 563px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3021" alt="paintbucket" src="http://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/paintbucket2-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3019" alt="textedit" src="http://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/textedit1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 9.</h3>
<p>Add your main banner image sized 1400 x 400 and position under the header.</p>
<h3>Step 10.</h3>
<p>Create a box using the marque tool, position over the banner and fill with colour #e74e4e.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3017" alt="marque" src="http://designdisease.com/wp-content/uploads/2013/07/marque1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3006" alt="red-colour" src="http://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg" width="563" height="323" srcset="https://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg 563w, https://designdisease.com/wp-content/uploads/2013/07/red-colour-300x172.jpg 300w" sizes="auto, (max-width: 563px) 100vw, 563px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3021" alt="paintbucket" src="http://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/paintbucket2.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/paintbucket2-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 11.</h3>
<p>To make the intro box transparent change the opacity of the layer to 80% on your layers palette.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3022" alt="opacity" src="http://designdisease.com/wp-content/uploads/2013/07/opacity1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/opacity1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/opacity1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 12.</h3>
<p>Add your intro text into the transparent box.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3019" alt="textedit" src="http://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/textedit1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 13.</h3>
<p>Create 4 new vertical guides at 500px, 550px, 850px &amp; 900px. These are splits for your 3 services content.</p>
<h3>Step 14.</h3>
<p>Add a title, icon and text in between each of the 3 guides.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3023" alt="services" src="http://designdisease.com/wp-content/uploads/2013/07/services1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/services1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/services1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 15.</h3>
<p>Add 5 portfolio images sized 250 x 220 and line up horizontally across the page, do the same again underneath to give you 10 portfolio images.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3024" alt="port" src="http://designdisease.com/wp-content/uploads/2013/07/port1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/port1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/port1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 16.</h3>
<p>Using the marque tool add a 1400 x 200 box and fill with colour #B6B6B6 then position under your portfolio images.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3017" alt="marque" src="http://designdisease.com/wp-content/uploads/2013/07/marque1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3015" alt="marque-size" src="http://designdisease.com/wp-content/uploads/2013/07/marque-size1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque-size1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque-size1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3007" alt="grey" src="http://designdisease.com/wp-content/uploads/2013/07/grey.jpg" width="562" height="320" srcset="https://designdisease.com/wp-content/uploads/2013/07/grey.jpg 562w, https://designdisease.com/wp-content/uploads/2013/07/grey-300x170.jpg 300w" sizes="auto, (max-width: 562px) 100vw, 562px" /></p>
<h3>Step 17.</h3>
<p>Add your clients title with type tool and position to the left.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3025" alt="clients1" src="http://designdisease.com/wp-content/uploads/2013/07/clients11.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/clients11.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/clients11-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 18.</h3>
<p>Add your left &amp; right arrow icons and colour overlay (layer &gt; layer style &gt;colour overlay) with #e74e4e.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3026" alt="arrow" src="http://designdisease.com/wp-content/uploads/2013/07/arrow1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/arrow1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/arrow1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3006" alt="red-colour" src="http://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg" width="563" height="323" srcset="https://designdisease.com/wp-content/uploads/2013/07/red-colour.jpg 563w, https://designdisease.com/wp-content/uploads/2013/07/red-colour-300x172.jpg 300w" sizes="auto, (max-width: 563px) 100vw, 563px" /></p>
<h3>Step 19.</h3>
<p>Add your client logos to fit inbetween the arrows and colour overlay (layer &gt; layer style &gt;colour overlay) them with #FFFFFF.</p>
<p><img decoding="async" class="alignnone size-full wp-image-3004" alt="clients2" src="http://designdisease.com/wp-content/uploads/2013/07/clients2.jpg" width="640" srcset="https://designdisease.com/wp-content/uploads/2013/07/clients2.jpg 1090w, https://designdisease.com/wp-content/uploads/2013/07/clients2-300x48.jpg 300w, https://designdisease.com/wp-content/uploads/2013/07/clients2-1024x167.jpg 1024w" sizes="(max-width: 1090px) 100vw, 1090px" /></p>
<h3>Step 20.</h3>
<p>Using the marque tool add a 1400 x 100 box and fill with colour #2A2E39 then position under the grey clients background box.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3017" alt="marque" src="http://designdisease.com/wp-content/uploads/2013/07/marque1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/marque1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/marque1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3008" alt="blue-c" src="http://designdisease.com/wp-content/uploads/2013/07/blue-c.jpg" width="563" height="322" srcset="https://designdisease.com/wp-content/uploads/2013/07/blue-c.jpg 563w, https://designdisease.com/wp-content/uploads/2013/07/blue-c-300x171.jpg 300w" sizes="auto, (max-width: 563px) 100vw, 563px" /></p>
<h3>Step 21.</h3>
<p>Add your footer links and copyright using type tool to the left.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3019" alt="textedit" src="http://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/textedit1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/textedit1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<h3>Step 22.</h3>
<p>Add your social media icons to the right and colour overlay #B6B6B6 if necessary.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3027" alt="logos" src="http://designdisease.com/wp-content/uploads/2013/07/logos1.jpg" width="640" height="200" srcset="https://designdisease.com/wp-content/uploads/2013/07/logos1.jpg 640w, https://designdisease.com/wp-content/uploads/2013/07/logos1-300x93.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3007" alt="grey" src="http://designdisease.com/wp-content/uploads/2013/07/grey.jpg" width="562" height="320" srcset="https://designdisease.com/wp-content/uploads/2013/07/grey.jpg 562w, https://designdisease.com/wp-content/uploads/2013/07/grey-300x170.jpg 300w" sizes="auto, (max-width: 562px) 100vw, 562px" /></p>
<p>&nbsp;</p>
<p>I hope you enjoyed the tutorial, if you wish to download the RedBox template then click the link below.</p>
<p><a class="button" href="http://designdisease.com/wp-content/uploads/2013/07/redbox.zip">Download the Redbox PSD Here</a></p><p>The post <a href="https://designdisease.com/create-a-redbox-website-template-tutorial-psd/">Create a RedBox Website Template: Tutorial & PSD</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/create-a-redbox-website-template-tutorial-psd/feed/</wfw:commentRss>
			<slash:comments>23</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2982</post-id>	</item>
		<item>
		<title>Reseller Hosting and what to look for</title>
		<link>https://designdisease.com/reseller-hosting/</link>
					<comments>https://designdisease.com/reseller-hosting/#comments</comments>
		
		<dc:creator><![CDATA[Matt D]]></dc:creator>
		<pubDate>Sat, 18 May 2013 17:35:46 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2850</guid>

					<description><![CDATA[<p>Reseller Hosting &#8211; the basics Have you heard of reseller hosting? A popular choice of many webmasters, web designers and small businesses, plenty of confusion still exists around what reseller hosting actually is and the benefits it has for anyone looking to host multiple websites. If you&#8217;re familiar with reseller hosting already, this article will serve as a useful reference/checklist to make sure you&#8217;re getting all of the features you need from your reseller package. [&#8230;]</p>
<p>The post <a href="https://designdisease.com/reseller-hosting/">Reseller Hosting and what to look for</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Reseller Hosting &#8211; the basics</strong></p>
<p>Have you heard of reseller hosting? A popular choice of many webmasters, web designers and small businesses, plenty of confusion still exists around what reseller hosting actually is and the benefits it has for anyone looking to host multiple websites. If you&#8217;re familiar with reseller hosting already, this article will serve as a useful reference/checklist to make sure you&#8217;re getting all of the features you need from your reseller package.</p>
<p>So what is reseller hosting?</p>
<p>Reseller hosting is a term used to describe hosting multiple websites under a single, larger, web hosting account. A reseller hosting client (i.e. someone that buys reseller hosting) generally buys a reseller account to become their own web host and offer hosting to their own clients, or just to consolidate multiple websites of their own under a single account. The latter is becoming increasingly popular among webmasters who maintain a number of websites as one reseller account means it is a single monthly fee, a single renew date and generally less hassle than renewing multiple shared accounts.</p>
<p>Most reseller hosts don&#8217;t mind if you use the account to host your own websites, or to offer hosting to your own customers.</p>
<p>&nbsp;</p>
<p><strong>Reseller Hosting &#8211; different platforms</strong></p>
<p>A number of different reseller hosting platforms exist. However, one platform stands leagues ahead of the others for simplicity, ease-of-use and number of features. This platform is the cPanel / WebHostManager (WHM) platform. A couple of screenshots give you a sneak preview below and you can find out more at <a title="cPanel" href="http://www.cpanel.net" target="_blank">www.cpanel.net</a>.</p>
<div id="attachment_2857" style="width: 310px" class="wp-caption aligncenter"><a href="http://designdisease.com/wp-content/uploads/2013/05/cpanel_screenshot.gif"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-2857" class="size-medium wp-image-2857" alt="cPanel control panel" src="http://designdisease.com/wp-content/uploads/2013/05/cpanel_screenshot-300x169.gif" width="300" height="169" /></a><p id="caption-attachment-2857" class="wp-caption-text">cPanel control panel</p></div>
<p>&nbsp;</p>
<div id="attachment_2858" style="width: 310px" class="wp-caption aligncenter"><a href="http://designdisease.com/wp-content/uploads/2013/05/whm_screenshot.gif"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-2858" class="size-medium wp-image-2858" alt="WebHostManager control panel" src="http://designdisease.com/wp-content/uploads/2013/05/whm_screenshot-300x169.gif" width="300" height="169" /></a><p id="caption-attachment-2858" class="wp-caption-text">WebHostManager (WHM) control panel</p></div>
<p>The cPanel / WHM system is two fold.</p>
<p><strong>WebHostManager</strong></p>
<p>WebHostManager is the reseller control center. You use WebHostManager to add/modify/remove/manage each of your resold accounts. The screenshot above shows how easy it is to add a new account. WebHostManager also gives you, the reseller, the chance to login to your client / resold accounts&#8217; cPanel, change their password, check their diskspace usage and more. Each account you create through WHM comes with it&#8217;s own cPanel login.</p>
<p><strong>cPanel</strong></p>
<p>cPanel is the account control panel, or client control panel. Every full account you create comes with it. It allows account owners (whether that&#8217;s you &#8211; the reseller, or your client) to manage all aspects of the hosting account. These aspects include email, FTP, databases, passwords, WordPress and more. There&#8217;s way too many features to list here so check out the fully-functional live demo at <a href="http://cpanel.net/demo/">http://cpanel.net/demo/</a></p>
<p>&nbsp;</p>
<p><strong>Other important reseller hosting features</strong></p>
<p>This list is by no means definitive, but it should give you some ideas of what to look for when choosing your reseller host</p>
<ul>
<li><span style="line-height: 13px;">Personal nameservers &#8211; these add a degree of professionalism to your reseller business. Personal nameservers look like ns1.yourdomain.com and ns2.yourdomain.com. You can give these to your clients and these will also show up in any WHOIS searches on domains pointed to your nameservers</span></li>
<li>Free account transfers &#8211; stuck with another, poor-quality web host? Some reseller hosting providers offer a free account transfer to help you migrate your accounts off the old hosting company</li>
<li>24&#215;7 support &#8211; an important requirement for any reseller. You need to know that your service provider is there to give you help, when you need it. If your client has a problem that you can&#8217;t solve and you need to speak to your reseller host, it is imperative they&#8217;re there around the clock and answer you quickly so you don&#8217;t keep your client waiting</li>
<li>Billing software &#8211; many reseller hosts now include free billing software to allow you to easily manage and bill your own clients. Two popular choices of reseller billing software are WHMCS and Blesta</li>
<li>Credit card processing &#8211; some reseller hosts also offer free or discounted credit card processing software, allowing you to easily accept payments from credit cards. Paypal and Google Checkout are both popular and free ways of taking payments, but you really need to take credit cards to add a degree of professionalism to your operation. Popular credit card providers include 2Checkout.com, Charge.com and WorldPay.com</li>
</ul>
<p><strong>Good reseller hosts</strong></p>
<p><strong></strong>This wraps up the first part of our reseller hosting guide. We&#8217;ll be posting a follow up soon.<span style="line-height: 13px;"> But lastly, we&#8217;re sure you want to know who we recommend you look at for reseller hosting? There&#8217;s plenty of options around and Google &#8220;reseller hosting&#8221;, &#8220;reliable reseller hosting&#8221; etc to get a better idea. But designdisease.com is hosted by <a rel="nofollow" title="WebHostingBuzz" href="http://www.webhostingbuzz.com" target="_blank">WebHostingBuzz</a> and you can check out their <a rel="nofollow" title="WebHostingBuzz Reseller Hosting" href="http://www.webhostingbuzz.com/reseller-hosting.php" target="_blank">reseller hosting here</a>. The also offer <a rel="nofollow" title="UK Reseller Hosting" href="http://www.webhostingbuzz.co.uk/reseller-hosting.php" target="_blank">UK reseller hosting</a> for those in the UK /Europe.</span></p>
<p>Good luck with your journey into the reseller hosting world!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p><p>The post <a href="https://designdisease.com/reseller-hosting/">Reseller Hosting and what to look for</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/reseller-hosting/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2850</post-id>	</item>
		<item>
		<title>What makes a web hosting server?</title>
		<link>https://designdisease.com/what-makes-makes-a-web-hosting-server/</link>
					<comments>https://designdisease.com/what-makes-makes-a-web-hosting-server/#comments</comments>
		
		<dc:creator><![CDATA[Matt D]]></dc:creator>
		<pubDate>Mon, 15 Apr 2013 16:07:35 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2784</guid>

					<description><![CDATA[<p>Ever wondered what technology is used in a web hosting server? Whether it is a shared server powering hundreds of websites, a cloud hypervisor as part of a larger cluster or a dedicated server for power hungry websites, server technology is key to the smooth running of each and every website around the world. &#160; Server technology advances at a breathtaking rate each and every year. Server manufacturers focus on increasing raw performance while reducing [&#8230;]</p>
<p>The post <a href="https://designdisease.com/what-makes-makes-a-web-hosting-server/">What makes a web hosting server?</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Ever wondered what technology is used in a web hosting server? Whether it is a shared server powering hundreds of websites, a cloud hypervisor as part of a larger cluster or a dedicated server for power hungry websites, server technology is key to the smooth running of each and every website around the world.</p>
<p>&nbsp;</p>
<p>Server technology advances at a breathtaking rate each and every year. Server manufacturers focus on increasing raw performance while reducing power usage; in today&#8217;s world, energy costs are only ever going to rise.<br />
As part of the launch of our new UK <a rel="nofollow" title="Dedicated servers" href="http://www.webhostingbuzz.co.uk/dedicated-servers.php" target="_blank">dedicated servers</a>, our design team built a 3d image showing just what goes in a typical server. Each of the key core components is highlighted and we&#8217;ve explained the technology we use. DesignDisease is hosted on a WebHostingBuzz dedicated server, so this image is particularly appropriate.  I&#8217;ll let the pictures do the rest of the talking :)</p>
<div id="attachment_2785" style="width: 568px" class="wp-caption aligncenter"><a href="http://designdisease.com/wp-content/uploads/2013/04/exploded_drawing_blog.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-2785" class="size-large wp-image-2785" title="What goes in a dedicated server" alt="Dedicated server components" src="http://designdisease.com/wp-content/uploads/2013/04/exploded_drawing_blog-558x1024.png" width="558" height="1024" srcset="https://designdisease.com/wp-content/uploads/2013/04/exploded_drawing_blog-558x1024.png 558w, https://designdisease.com/wp-content/uploads/2013/04/exploded_drawing_blog-163x300.png 163w, https://designdisease.com/wp-content/uploads/2013/04/exploded_drawing_blog.png 600w" sizes="auto, (max-width: 558px) 100vw, 558px" /></a><p id="caption-attachment-2785" class="wp-caption-text">The hardware components that make up a dedicated server</p></div>
<p style="text-align: center">
<p>&nbsp;</p><p>The post <a href="https://designdisease.com/what-makes-makes-a-web-hosting-server/">What makes a web hosting server?</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/what-makes-makes-a-web-hosting-server/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2784</post-id>	</item>
		<item>
		<title>How to Get More Clients as a Web Designer/Developer By Sharing What You Know</title>
		<link>https://designdisease.com/how-to-get-more-clients-as-a-web-designer-developer-by-sharing-what-you-know/</link>
					<comments>https://designdisease.com/how-to-get-more-clients-as-a-web-designer-developer-by-sharing-what-you-know/#comments</comments>
		
		<dc:creator><![CDATA[Pravin]]></dc:creator>
		<pubDate>Fri, 01 Mar 2013 02:09:12 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2624</guid>

					<description><![CDATA[<p>This is a guest blog by Pravin Daryani, Co-Founder and CEO of ContentForest. With the massive growth in technology and increase in the number of platforms, there is a huge increase in the number of people starting technology and internet based businesses . One thing that has been common to all businesses is the need for a creative and responsive web developer &#8211; someone who understands exactly what they need and how they need it. [&#8230;]</p>
<p>The post <a href="https://designdisease.com/how-to-get-more-clients-as-a-web-designer-developer-by-sharing-what-you-know/">How to Get More Clients as a Web Designer/Developer By Sharing What You Know</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>This is a guest blog by Pravin Daryani, Co-Founder and CEO of <a href="http://www.contentforest.com">ContentForest</a>.</p>
<p>With the massive growth in technology and increase in the number of platforms, there is a huge increase in the number of people starting technology and internet based businesses . One thing that has been common to all businesses is the need for a creative and responsive web developer &#8211; someone who understands exactly what they need and how they need it. And someone who delivers on time.</p>
<p><a href="http://www.flickr.com/photos/jonrohan/5081408605/"><img loading="lazy" decoding="async" class="alignnone  wp-image-2629" alt="medium_5081408605" src="http://designdisease.com/wp-content/uploads/2013/02/medium_5081408605.jpg" width="512" height="382" srcset="https://designdisease.com/wp-content/uploads/2013/02/medium_5081408605.jpg 640w, https://designdisease.com/wp-content/uploads/2013/02/medium_5081408605-300x224.jpg 300w" sizes="auto, (max-width: 512px) 100vw, 512px" /></a></p>
<p>Entrepreneurs and small business owners are known to browse the internet looking for that awesome developer who would develop their dream website and give the desired results.  Of course, there is no dearth of web designing projects out there on the internet. So how do you as a developer, get more clients off the internet? How do you make sure you stand out from other freelance designers?</p>
<p><span id="more-2624"></span></p>
<p>The answer is very simple – <a href="http://www.contentforest.com"><strong>content marketing</strong></a>. Providing killer content through regular blog posts, guest blogging, weekly podcasts and participating in online communities can help you get your name out there. And here’s why:</p>
<ul>
<li><strong>Let them find you</strong> &#8211; Building a strong online presence by sharing what you know in the form of maybe a blog or your own, or as a guest blogger or as a paid writer for a publication is what will drive your clients to find you and more importantly, trust you.</li>
<li><strong>Kill the Competition</strong> &#8211; I think that if you are a web designer or a developer who understands how to market your content online, you would have a tremendous advantage over your rivals who are trying to use conventional methods to sell their services.</li>
<li><strong>Impress the Clients</strong> – There is a possibility that your future client does not understand a thing about web design. They do not know what HTML5, Web2.0, XHTML, W3C Standards etc and which technology would suit them. What they would understand is conversion rates, e-mail lists and sales. Writing about such stuff and telling them how web designing works makes you sound competent and makes them want to work with you.</li>
<li><strong>Build your brand</strong> &#8211; What happens when people need to get work done and they hear about someone who is a recognized expert in that particular field? They want to hire that person. Essentially by creating content that connects with clients and web developers alike, you have gained exposure and people are talking about you. You have created a brand for yourself.</li>
<li><strong>Get paid while you are at it</strong> – Several tech publications are on the lookout for technology experts who can write and educate their readers about web development and news from the world of website building. As a guest blogger, you could easily get paid while sharing your knowledge and get paid a decent amount.</li>
</ul>
<p>And as they say, “Coding don’t cut it anymore”. Talking to your audience will help you develop a connection with them. Designers need to be more than just code-developing geeks. The clients think of you as the digital gurus and having a solid digital presence is what would be expected out of you.</p>
<p>&nbsp;</p><p>The post <a href="https://designdisease.com/how-to-get-more-clients-as-a-web-designer-developer-by-sharing-what-you-know/">How to Get More Clients as a Web Designer/Developer By Sharing What You Know</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/how-to-get-more-clients-as-a-web-designer-developer-by-sharing-what-you-know/feed/</wfw:commentRss>
			<slash:comments>18</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2624</post-id>	</item>
		<item>
		<title>5 Tips on Picking Great Images for Your Articles</title>
		<link>https://designdisease.com/5-tips-on-picking-great-images-for-your-articles/</link>
					<comments>https://designdisease.com/5-tips-on-picking-great-images-for-your-articles/#comments</comments>
		
		<dc:creator><![CDATA[Danny Groner]]></dc:creator>
		<pubDate>Tue, 12 Feb 2013 18:57:18 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Pictures]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2562</guid>

					<description><![CDATA[<p>Articles with pictures accompanying them are proven to get clicked on at a higher rate than text-only articles. Our eyes gravitate to the imagery we spot when we land on a page. This has always been true, dating back centuries. When news was delivered daily inside of newspapers, the papers always featured a prominent and attractive photo on their covers. Today, on the internet, a primarily visual medium, the raw communicative power of imagery has increased exponentially. Picking the right photo, though, can be daunting, difficult, or time-consuming.</p>
<p>Here are five tips on how to jazz up your articles and blog posts with beautiful and provocative photos that will grab your audience and keep them.</p>
<p><img src="http://designdisease.com/wp-content/uploads/2013/02/kid.jpg" alt="kid" width="627" height="353" class="alignnone size-full wp-image-2570" /></p>
<p>The post <a href="https://designdisease.com/5-tips-on-picking-great-images-for-your-articles/">5 Tips on Picking Great Images for Your Articles</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Articles with pictures accompanying them are proven to get clicked on at a higher rate than text-only articles. Our eyes gravitate to the imagery we spot when we land on a page. This has always been true, dating back centuries. When news was delivered daily inside of newspapers, the papers always featured a prominent and attractive photo on their covers. Today, on the internet, a primarily visual medium, the raw communicative power of imagery has increased exponentially. Picking the right photo, though, can be daunting, difficult, or time-consuming.</p>
<p>Here are five tips on how to jazz up your articles and blog posts with beautiful and provocative photos that will grab your audience and keep them:</p>
<p><span id="more-2562"></span></p>
<h3><strong>Show Life</strong></h3>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2567" alt="dog" src="http://designdisease.com/wp-content/uploads/2013/02/dog.jpg" width="627" height="353" srcset="https://designdisease.com/wp-content/uploads/2013/02/dog.jpg 627w, https://designdisease.com/wp-content/uploads/2013/02/dog-300x168.jpg 300w" sizes="auto, (max-width: 627px) 100vw, 627px" /><br />
<a title="Puppy picture" href="http://www.shutterstock.com/pic-87029687/stock-photo-puppies-playing-in-grass.html?pl=EGP-PICKING&amp;cr=GPL" target="_blank">Puppy picture</a></p>
<p>You might be used to thinking about pictures as a way to capture a person posing in place. But try to broaden your horizons and approach your photo selection as a photojournalist looking to capture a specific moment or feeling in time. The more unique the moment, the greater it will resonate with you and your audience. Photos shouldn&#8217;t be an afterthought before publishing; active and creative images will make a discernible difference.</p>
<h3><strong>Sprinkle Color</strong></h3>
<p><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/02/lips.jpg" alt="lips" width="627" height="353" class="alignnone size-full wp-image-2569" srcset="https://designdisease.com/wp-content/uploads/2013/02/lips.jpg 627w, https://designdisease.com/wp-content/uploads/2013/02/lips-300x168.jpg 300w" sizes="auto, (max-width: 627px) 100vw, 627px" /><br />
<a title="Colored lips picture" href="http://www.shutterstock.com/pic-112909858/stock-photo-rainbow-vivid-color-lips-with-brush-close-up-face-detail.html?pl=EGP-PICKING&amp;cr=GPL" target="_blank">Colored lips picture</a></p>
<p>You have just a few seconds to really catch someone&#8217;s eye as they land on your page or scroll through. Having a picture front and center for that reading experience is a start, but selecting a photo that grabs readers by their optic nerves is a surefire way to get them to stick around. Certain <a title="Color Psychology" href="http://www.shutterstock.com/blog/2012/09/color-psychology-meaning-emotions/" target="_blank">colors appeal to us in different ways</a>. Looking at your article, think about what emotion you&#8217;re hoping to rouse up. And then choose a photo bursting with colors that will reflect that. It&#8217;s the first impression that matters most, after all.</p>
<h3><strong>Think differently</strong></h3>
<p><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/02/kid.jpg" alt="kid" width="627" height="353" class="alignnone size-full wp-image-2570" srcset="https://designdisease.com/wp-content/uploads/2013/02/kid.jpg 627w, https://designdisease.com/wp-content/uploads/2013/02/kid-300x168.jpg 300w" sizes="auto, (max-width: 627px) 100vw, 627px" /><br />
<a title="Small boy picture" href="http://www.shutterstock.com/pic-116278801/stock-photo-a-small-boy-playing.html?pl=EGP-PICKING&amp;cr=GPL" target="_blank">Small boy picture</a></p>
<p>Do something unexpected. Too often, people just throw in a picture of a horse atop an article related to horses. It&#8217;s easy, but it&#8217;s also easy to get lost in the mix with the other horse articles out there. Ask yourself what the post is really about and then choose a picture accordingly. In the horses example, if it&#8217;s about an epidemic, show a weak horse. If it&#8217;s covering a prized horse, make sure you pick an image of a horse wrapped with a ribbon. The accessories within the picture drastically change the meaning from one picture to the next.</p>
<h3><strong>Go big</strong></h3>
<p><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/02/elephant.jpg" alt="elephant" width="627" height="353" class="alignnone size-full wp-image-2571" srcset="https://designdisease.com/wp-content/uploads/2013/02/elephant.jpg 627w, https://designdisease.com/wp-content/uploads/2013/02/elephant-300x168.jpg 300w" sizes="auto, (max-width: 627px) 100vw, 627px" /><br />
<a title="Elephant and dog picture" href="http://www.shutterstock.com/pic-90805409/stock-photo-elephant-and-dog-sit-on-a-beach.html?pl=EGP-PICKING&amp;cr=GPL" target="_blank">Elephant and dog picture</a></p>
<p>Every article should have a big, compelling image at or near the top. If someone passing through your site sees too much text toward the top, they will likely leave. It&#8217;s aesthetically pleasing to see a banner image right away &#8212; just look at how Facebook and Twitter redesigned their profile pages. Editors from popular sites have recognized the gains they get from abiding by this principle. You should follow suit and default to include a big photo that will speak loudly for the article.</p>
<h3><strong>Go small</strong></h3>
<p><img loading="lazy" decoding="async" src="http://designdisease.com/wp-content/uploads/2013/02/car.jpg" alt="car" width="627" height="353" class="alignnone size-full wp-image-2572" srcset="https://designdisease.com/wp-content/uploads/2013/02/car.jpg 627w, https://designdisease.com/wp-content/uploads/2013/02/car-300x168.jpg 300w" sizes="auto, (max-width: 627px) 100vw, 627px" /><br />
<a title="Chihuahuas picture" href="http://www.shutterstock.com/pic-43379776/stock-photo-two-chihuahuas-in-a-scooter-and-sidecar.html?pl=EGP-PICKING&amp;cr=GPL" target="_blank">Chihuahuas picture</a></p>
<p>For longer articles, you should discover new ways to keep the reader engaged. Visual aids like charts and jumpquotes go a long way, but they might strike the wrong chord for the less intellectual crowd. No matter, it&#8217;s essential to break up the text from time to time. Float a headshot-sized image to the right of the text midway through the article. It&#8217;ll make the long text much less daunting and help the reader get through to the end. You can also use these to illustrate your individual points along the way. Once you have a focused and happy audience, it&#8217;s up to you to keep them there. And a series of smaller <a href="http://www.shutterstock.com?pl=FEGP-AERIAL&amp;cr=HP" title="Shutterstock homepage" target="_blank">stock images</a> throughout will do the trick.</p><p>The post <a href="https://designdisease.com/5-tips-on-picking-great-images-for-your-articles/">5 Tips on Picking Great Images for Your Articles</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/5-tips-on-picking-great-images-for-your-articles/feed/</wfw:commentRss>
			<slash:comments>15</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2562</post-id>	</item>
		<item>
		<title>A Look At Awesome Data Centers (Infographic)</title>
		<link>https://designdisease.com/a-look-at-awesome-data-centers-infographic/</link>
					<comments>https://designdisease.com/a-look-at-awesome-data-centers-infographic/#comments</comments>
		
		<dc:creator><![CDATA[James Vincent]]></dc:creator>
		<pubDate>Sat, 12 Jan 2013 08:45:05 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<guid isPermaLink="false">http://designdisease.com/?p=2454</guid>

					<description><![CDATA[<p class="big">Have you ever wondered what it takes to power your favorite websites? In this inforgraphic we take a look at some datacenter history, today's largest datacenteres, and some of today's greenest datacenters.</p>
<p class="big">A datacenter is a facility that is designed and built specifically to house computers, storage arrays, and telecommunications (networking) systems. Some datacenters have incredible security measures to protect what is inside, and the largest datacenters are known to use more electricity than entire towns.</p>
<p><a href="http://designdisease.com/a-look-at-awesome-data-centers-infographic/"><img src="http://designdisease.com/wp-content/uploads/2013/01/greenest-datacenteres-642.png" alt="Greenest Datacenters" width="642" height="318" class="size-full wp-image-2460" /></a></p>
<p>The post <a href="https://designdisease.com/a-look-at-awesome-data-centers-infographic/">A Look At Awesome Data Centers (Infographic)</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Have you ever wondered what it takes to power your favorite websites? In this inforgraphic we take a look at some datacenter history, today&#8217;s largest datacenteres, and some of today&#8217;s greenest datacenters.</p>
<p>A datacenter is a facility that is designed and built specifically to house computers, storage arrays, and telecommunications (networking) systems. Some datacenters have incredible security measures to protect what is inside, and the largest datacenters are known to use more electricity than entire towns. Exact locations of datacenters are generally kept secret for security, but here are some interesting facts about them.</p>
<p><a href="http://www.whoishostingthis.com/blog/2013/01/07/awesome-data-centers-infographic/"><img decoding="async" src="http://www.whoishostingthis.com/blog/wp-content/uploads/2013/01/awesome_datacenters_small.jpg" style="max-width:100%"/></a><br />Via: <a href="http://www.whoishostingthis.com/hosting-coupons/">WhoIsHostingThis</a></p><p>The post <a href="https://designdisease.com/a-look-at-awesome-data-centers-infographic/">A Look At Awesome Data Centers (Infographic)</a> first appeared on <a href="https://designdisease.com">DesignDisease | Web and Graphic Design Blog</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://designdisease.com/a-look-at-awesome-data-centers-infographic/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2454</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced (Page is feed) 
Database Caching 5/120 queries in 0.036 seconds using Disk

Served from: designdisease.com @ 2026-06-06 15:18:42 by W3 Total Cache
-->