<?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>Design Made Better</title>
	<atom:link href="http://designmadebetter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://designmadebetter.com</link>
	<description>Teaching Designers How to Design for the Web</description>
	<lastBuildDate>Mon, 10 Oct 2011 19:22:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How does the CSS clear property work?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/how-does-clear-work/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/how-does-clear-work/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 02:47:27 +0000</pubDate>
		<dc:creator>tdomf_c741f</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Expert Q & A]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=151</guid>
		<description><![CDATA[Hello, me again I&#8217;ve been struggling to no end to make sense of the &#8220;clear&#8221; property and I really don&#8217;t understand a) its purpose and b) how to implement it properly. Answer: The clear property specifies which sides of an element where other floating elements are not allowed. Basically it tells the browser &#8211; we [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, me again <img src='http://designmadebetter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ve been struggling to no end to make sense of the &#8220;clear&#8221; property and I really don&#8217;t understand a) its purpose and b) how to implement it properly.</p>
<h1>Answer:</h1>
<p>The clear property specifies which sides of an element where other floating elements are not allowed. Basically it tells the browser &#8211; we don&#8217;t allow floats next to this property. So lets say for instance: you&#8217;re floating two columns left and then you have a box below them that you want to break the float (in other words not sit next to the floated items above), you&#8217;ll want to clear the float so that the bottom element inserts itself after the other two columns instead of showing up on the right hand side of the floated columns (as it would normally since the other two elements are floated).</p>
<p>The CSS would look like this:</p>
<p><code>&lt;style type="text/css"&gt;</code></p>
<p><code>#sidebar {float: left; width: 100px;}</code><br />
<code>#main-content {float: left; width: 300px;}</code><br />
<code>#footer {clear: left;}</code></p>
<p><code>&lt;/style&gt;</code></p>
<p>And the code in the body would look like:</p>
<p><code>&lt;div id="sidebar"&gt;</code></p>
<p><code>&lt;p&gt;This column is the sidebar - it's floated left&lt;/p&gt;</code></p>
<p><code>&lt;/div&gt;</code></p>
<p><code>&lt;div id="main-content"&gt;</code></p>
<p><code>&lt;p&gt;This column is the main content - it's floated left&lt;/p&gt;</code></p>
<p><code>&lt;/div&gt;</code></p>
<p><code>&lt;div id="footer"&gt;</code></p>
<p><code>&lt;p&gt;This is the footer, it's clear:left so it displays below the floated elements and does not allow the standard "wrap" where it would display to the right of the left floated elements above.&lt;/p&gt;</code></p>
<p><code>&lt;/div&gt;</code></p>
<p>Take this bit of code and toss it into an HTML editor, play around with it by removing the clear property and adding it again. Or, if you want to play with an in page editor check out this <a title="CSS Clear Tutorial by QuackIt" href="http://www.quackit.com/css/properties/css_clear.cfm" target="_blank">quick clear tutorial by QuackIt</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/how-does-clear-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I rebrand HTML on a page?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/affiliate-link-creator/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/affiliate-link-creator/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 05:14:07 +0000</pubDate>
		<dc:creator>tdomf_c741f</dc:creator>
				<category><![CDATA[Expert Q & A]]></category>
		<category><![CDATA[Functionality]]></category>
		<category><![CDATA[Marketing Techniques]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=160</guid>
		<description><![CDATA[Hi. What I&#8217;d like to do is rebrand certain parts on a web page based on user input. For example, I&#8217;ll have a form that says &#8220;enter your user ID&#8221;, and based on what they enter certain parts on the page will be rebranded with their user ID. Here is an example of what I [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Hi. What I&#8217;d like to do is rebrand certain parts on a web page based on user input. For example, I&#8217;ll have a form that says &#8220;enter your user ID&#8221;, and based on what they enter certain parts on the page will be rebranded with their user ID.</p>
<p>Here is an example of what I mean:</p>
<p>http://www.getmoremomentum.com/jv/</p>
<p>Half way down the page this person has a form that says &#8220;brand tools&#8221;. And once you enter your affiliate link, all &#8220;tools&#8221; get branded with your affiliate link.</p>
<p>I&#8217;d like to do something similar.</p>
<p>Thanks,<br />
Max</p></blockquote>
<p>Max,</p>
<p>This particular feature is what you would call a &#8220;quick link generator&#8221; and it&#8217;s linked up to an affiliate marketing contact management software. The particular software is called <a title="Affiliate Marketing Contact Management Software" href="http://www.infusionsoft.com/">Infusionsoft</a>. Basically this software creates a database of all the inputs and if someone ever comes in on that URL they&#8217;ll assign the sale to the right affiliate. I know all of this because when you look at the base of the &#8220;affiliate url&#8221;:</p>
<p>https://aim.infusionsoft.com/go/instantlifestyle/XXXXX</p>
<p>You&#8217;ll notice Infusionsoft is actually in the URL string.</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/affiliate-link-creator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do font-replacement techniques such as Cufon or @font-face work?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/how-do-font-replacement-techniques-such-as-cufon-or-font-face-work/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/how-do-font-replacement-techniques-such-as-cufon-or-font-face-work/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 03:28:55 +0000</pubDate>
		<dc:creator>tdomf_c741f</dc:creator>
				<category><![CDATA[Expert Q & A]]></category>
		<category><![CDATA[Fonts]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=109</guid>
		<description><![CDATA[@font-face and Cufon text replacement are two great ways to bring typography to the web, however there are some things to keep in mind when using these techniques.]]></description>
			<content:encoded><![CDATA[<p>I really want to start using some of these techniques but I really don&#8217;t understand what makes them work and how to implement them?</p>
<h1><strong>Answer:</strong></h1>
<p>Great question, I was waiting for someone to ask this one!</p>
<h2><strong>@font-face</strong></h2>
<p>@font-face was first introduced back in the CSS 2 specification back in 1998, however overall browser support has limited its use. @font-face has appeared again in the draft of CSS 3, so it&#8217;s come back up in the &#8220;main stream&#8221; as a way to maybe use fonts other than those that are considered &#8220;web safe&#8221;. The only trick is that browsers aren&#8217;t all on the same page regarding what or how to support this css construct. (Are we surprised? Hardly.) But, here&#8217;s how it works:</p>
<p><strong>Step 1.</strong> You declare the @font-face construct, tell it what to name the &#8220;font-family&#8221; and supplement a URL for the font file. Currently, <a title="Browser Support for @font-face CSS" href="http://webfonts.info/wiki/index.php?title=@font-face_browser_support">different types of browsers support different types of font file formats</a>, so be sure to check before implementing this.</p>
<pre>@font-face {
    font-family: 'MemphisMedium';
    src: url('fonts/memphism-webfont.eot');
    src: url('fonts/memphism-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/memphism-webfont.woff') format('woff'),
         url('fonts/memphism-webfont.ttf') format('truetype'),
         url('fonts/memphism-webfont.svg#MemphisMedium') format('svg');
    font-weight: normal;
    font-style: normal;
}</pre>
<p><strong>Step 2.</strong> Once you&#8217;ve declared the font fine in the @font-face construct you can call it in any css id or class just like any other font family.</p>
<pre><code>h1 {<strong>font-family: 'MemphisMedium'</strong>, Helvetica, Arial, Sans-Serif; font-size: 2.9em; font-weight: normal; color: #ffffe2;}</code></pre>
<p>While @font-face is cool and is AWESOME to use, you do need to make sure that you have legal rights to use the font online.</p>
<h2><strong>Cufon</strong></h2>
<p>Cufon is a javascript text replacement that basically takes a font, renders EACH character in the replaced string with it&#8217;s color, size, and weight information, and then puts it out where the replaced text area was. Sounds confusing right?</p>
<p>Cufon actually makes it way easier than past methods like <a title="sIFR - Font Replacement" href="http://wiki.novemberborn.net/sifr/">sIFR</a>. I have used sIFR many times and while it&#8217;s very customizable it&#8217;s VERY hard to pick up and use without a strong knowledge of css, flash and some use of sIFR before. However, Cufon is way easier, way less confusing, in fact the first time I used it, I was like, &#8220;This is it?&#8221; So here&#8217;s how Cufon to get it to work:</p>
<p><strong>Step 1.</strong> <a title="Base Cufon Javascript file" href="http://cufon.shoqolate.com/js/cufon-yui.js">Download the base javascript file</a>, then put it on your server with your other javascript files (I keep mine in a folder called js). This is the basic javascript information Cufon needs to have to work, so it&#8217;s really important you put that in there. <strong></strong></p>
<p><strong>Step 2.</strong> Generate your font using <a title="Cufon - Fonts for the People" href="http://cufon.shoqolate.com/generate/">Cufon&#8217;s font generator</a>. Browse for the font file you want to use (Currently only TrueType (TTF), OpenType (OTF), Printer Font Binary (PFB) and PostScript fonts are supported.), agree that you have the rights to use the font file (there&#8217;s a check box at the end of the browse box and again at the bottom of the page), and select the characters you&#8217;d like the font generator to include, I usually do Uppercase, Lowercase, Numerals, Punctuation, WordPress Punctuation, Basic Latin and Latin-1 Supplement. <a title="Unicode Chart" href="http://www.ssec.wisc.edu/~tomw/java/unicode.html">Check out the full unicode chart</a> if you really want to get anal about what you&#8217;re putting into your font generator. But the ones I have listed up there should more than suffice for most web copy and symbols.  Besides these items everything else on the generator form is optional so you can skim right by it or read it and pick and choose if you like. <strong></strong></p>
<p><strong>Step 3.</strong> The font generator will give you another javascript file, this also goes in your js directory (or where ever it is you put things like that) <strong></strong></p>
<p><strong>Step 4.</strong> Put in a call. Javascript call that is. In your code place a call to the base Cufon script, the font generator script and then make a function call to replace the particular elements, classes or ids you&#8217;d like Cufon to replace the font of. In this example, it&#8217;s the heading 1 elements.</p>
<pre>	&lt;head&gt;
		&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt;
		&lt;script src="js/cufon-yui.js" type="text/javascript"&gt;&lt;/script&gt;
		&lt;script src="js/Vegur_300.font.js" type="text/javascript"&gt;&lt;/script&gt;
		&lt;script type="text/javascript"&gt;
			Cufon.replace('h1');
		&lt;/script&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;h1&gt;This text will be shown in Vegur.&lt;/h1&gt;
	&lt;/body&gt;</pre>
<p><strong>Step 5. </strong>Fix IE. Oh you knew IE would have to throw a wrench in there somewhere, didn&#8217;t ya? <img src='http://designmadebetter.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Place this little snippet of code at the bottom right before then end closing tag and any other additional end scripts such as Google Analytics. This will fix any flickering or loading delay issues in IE.</p>
<pre>&lt;script type="text/javascript"&gt; Cufon.now(); &lt;/script&gt;
&lt;/body&gt;</pre>
<p>And You&#8217;re done! YAAY so pretty! For more detailed directions such as using multiple fonts, etc <a title="How to Use Cufon In Depth" href="http://wiki.github.com/sorccu/cufon/usage" target="_blank">check out the Cufon Usage section</a>.</p>
<blockquote><p><strong>Bonus Tip:</strong></p>
<p>Don&#8217;t over-do Cufon, it&#8217;s not designed to be used a ton for large blocks of copy and things like that, use a web-safe font for those types of things, but at least you can get pretty headers and callouts to be sexy&#8230; it&#8217;s a start, right? If you do, you could have extreme load times where people don&#8217;t want to stick around, so just don&#8217;t over-do it.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/how-do-font-replacement-techniques-such-as-cufon-or-font-face-work/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What does &#8220;usability&#8221; mean exactly?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/internet-usability/what-does-usability-mean/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/internet-usability/what-does-usability-mean/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 20:51:17 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Interactivity]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=54</guid>
		<description><![CDATA[Usability in terms of &#8220;web usability&#8221; is basically the ability or ease for a person to use a website or web application to reach a desired goal. Such as, how easy is it to use Travelocity.com to book a flight or check your bank account balance using Chase.com. When designing and building a website you [...]]]></description>
			<content:encoded><![CDATA[<p>Usability in terms of &#8220;web usability&#8221; is basically the ability or ease for a person to use a website or web application to reach a desired goal. Such as, how easy is it to use Travelocity.com to book a flight or check your bank account balance using Chase.com.</p>
<p>When designing and building a website you should always have the core functionality at the helm driving how you design and develop to get the user from the front page to the end of the desired reaction. To do this, you not only need to know what you want the user to do, but how users interact with the web.</p>
<p>Usability of a website or web application depends on five factors:</p>
<ul>
<li><strong>Learnability:</strong> How easy is it for users to accomplish basic tasks the first time they encounter the design?</li>
<li><strong>Efficiency:</strong> Once users have learned the design, how quickly can they perform tasks?</li>
<li><strong>Memorability:</strong> When users return to the design after a period of not using it, how easily can they re establish proficiency?</li>
<li><strong>Errors:</strong> How many errors do users make, how severe are these errors, and how easily can they recover from the errors?</li>
<li><strong>Satisfaction:</strong> How pleasant is it to use the design?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/internet-usability/what-does-usability-mean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What size do I make my PSD to start a web design?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/psd-layout/what-size-do-i-make-my-psd-to-start-a-web-design/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/psd-layout/what-size-do-i-make-my-psd-to-start-a-web-design/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 21:18:27 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Layout]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=70</guid>
		<description><![CDATA[The size of your PSD is determined by the minimum screen resolution (measured in pixels) your design is required to support.]]></description>
			<content:encoded><![CDATA[<p>The size of your PSD is determined by the minimum screen resolution (measured in pixels) your design is required to support. Once you know this then you can set a width to your PSD, height isn&#8217;t quite as important because the web is usually designed to scroll, so pages can be as long as you like. However, there is a height measurement to the &#8220;above the fold&#8221; area that you can take into account when you design for best usability.</p>
<p>You can determine what minimum screen resolution by checking your analytics to see what your users prefer when browsing your website. The standard  minimum screen resolution used by most web designers is currently 1024 pixel x 768 pixel, but larger screen resolutions are becoming more popular in mass.</p>
<p>However, you have to take into account scroll bars, tool bars, status bars, etc from the browsing screen. This means the actual size of your PSD will be smaller than the full screen resolution. So for instance, if you&#8217;re designing for the standard of 1024 pixel x 768 pixel then your actual canvas area on your Photoshop document should be 960 pixels wide and at least 565 pixels (the above the fold area) to fit in a browser correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/psd-layout/what-size-do-i-make-my-psd-to-start-a-web-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Is it time to quit testing for Internet Explorer 6? Please say yes.</title>
		<link>http://designmadebetter.com/web-design-expert-answers/browser-testing/time-to-quit-testing-ie6/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/browser-testing/time-to-quit-testing-ie6/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 21:00:33 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=68</guid>
		<description><![CDATA[Ok, sit down for this one, I know it's going to be hard to hear. Ready for it?

The answer is...**opens up the white envelope, fumbles, nervous laugh as she opens the winners card** ... "maybe".

I know I know - anti-climatic at best, evil at the worst, but true all the same.]]></description>
			<content:encoded><![CDATA[<p>Ok, sit down for this one, I know it&#8217;s going to be hard to hear. Ready for it?</p>
<p>The answer is&#8230;**opens up the white envelope, fumbles, nervous laugh as she opens the winners card** &#8230; &#8220;maybe&#8221;.</p>
<p>I know I know &#8211; anti-climatic at best, evil at the worst, but true all the same.</p>
<h2>Cater to Your Users</h2>
<p>So, if the answer is &#8220;maybe&#8221;, when do you know when you should and when you shouldn&#8217;t? The answer is simple. Check your <a title="Google Analytics, free, simple and extremely helpful" href="http://www.google.com/analytics" target="_blank">web analytics</a>, if over 15% of your web traffic is using Internet Explorer 6 then you&#8217;re still catering to IE6 because you WANT to cater to your audience.</p>
<h2>What if I don&#8217;t know?</h2>
<p>If you don&#8217;t know what your user base is using as a browser I would still say to test for core functionality and usability and don&#8217;t sweat the minor design details such as rounded corners etc. As long as the user can use the website properly they&#8217;ll be none the wiser that they&#8217;re missing some small design detail. As a funny man once said, &#8220;Don&#8217;t worry about cross-browser testing for IE6 too much because the rest of the internet probably looks like shit for them too.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/browser-testing/time-to-quit-testing-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s a &#8220;mouse over&#8221; and how do I design for them?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-mouse-over-and-how-do-i-design-for-them/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-mouse-over-and-how-do-i-design-for-them/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 01:00:49 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Interactivity]]></category>
		<category><![CDATA[Layout]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=62</guid>
		<description><![CDATA[A "mouse over" is whenever the cursor moves over an element on a webpage. Styling this action can help create a more interactive web design and usable website when done well.]]></description>
			<content:encoded><![CDATA[<p>A &#8220;mouse over&#8221; is whenever the cursor moves over an element on a webpage. This element could be a link, button, section, you name it. Styling this action can help create a more interactive web design and usable website when done well.</p>
<p>Some benefits of styling mouse overs are:</p>
<ul>
<li>adds &#8220;movement&#8221; to an otherwise flat design</li>
<li>helps the user know they have moved over an area that they can interact with</li>
<li>adds a touch of design element that doesn&#8217;t have to be existing all the time</li>
<li>can create a delightful &#8220;Easter egg&#8221; moment when the user interacts with the element</li>
</ul>
<p>Take for instance, the icons that appear over each menu item on the navigation of Design Made Better, each help explain the action or information the user is going to find on the next page, not to mention they&#8217;re super cute.</p>
<h2>Great, now how do I get them into my flat PSD file?</h2>
<p>You can do this by simply creating a new layer (or layer group to keep everything tidy) in your photoshop document and styling that layer as you would like to see the mouse over when the user interacts with the trigger area.</p>
<blockquote>
<h3>Bonus Tip!</h3>
<p>Use the word &#8220;mouseover&#8221; or even simply &#8220;over&#8221; in addition to the original layer name in your new mouse over layer name to tell quickly which layers are the mouse overs and which are the originals.</p>
<p>Really handy if you&#8217;re handing your designs to someone else to implement, but can also help you remember what&#8217;s what in a complicated file.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-mouse-over-and-how-do-i-design-for-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s a &#8220;wireframe&#8221; and how does it affect my design?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-wireframe-and-how-does-it-affect-my-design/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-wireframe-and-how-does-it-affect-my-design/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:12:52 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Layout]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=65</guid>
		<description><![CDATA[Think of a wireframe as a skeleton for your design, the elements seen in a wireframe are the base on which your design should rest.]]></description>
			<content:encoded><![CDATA[<p>Think of a wireframe as a skeleton for your design, the elements seen in a wireframe are the base on which your design should rest.</p>
<p>Generally, wireframes are a helpful way to illustrate to designers what elements are required on the layout, how the information architect has determined to be their importance on the page and the order in which these elements should be seen by the user for best website usability.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 575px"><img class="size-full wp-image-81" title="website-wireframe-design" src="http://designmadebetter.com/wp-content/uploads/2009/11/website-wireframe-design.jpg" alt="website wireframe and final web design for Design Made Better" width="565" height="274" /><p class="wp-caption-text">website wireframe and final web design for Design Made Better</p></div>
<p>Now, you may be thinking, &#8220;Well that takes all the fun out of it!&#8221; Sure, I suppose you could think of it that way, OR you could think of it as &#8220;An efficient way to ensure your layout is as effective as possible.&#8221; or &#8220;YAAY! Now I just have to make it look good!&#8221; Usually wireframes don&#8217;t ULTIMATELY dictate element placement on the page, however they do usually shed some pretty good light on how they would like the users eye to go first by using size and color information shown on the wireframe.</p>
<p>In addition, wireframes are a great way to show clients what you&#8217;re thinking about designing before spending a long time on a design, just for them to end up moving elements around again and again and again, each time you&#8217;re having to go into Photoshop and make each revision so the client can &#8220;see&#8221; what you&#8217;re suggesting. Wireframes offer a quick, simple solution to the visual flow of a page and lay the foundation for your final design.</p>
<blockquote>
<h3>Bonus Tip!</h3>
<p>When designing from a wireframe, you should always check your final design to make sure it has all the elements that are shown on the wireframe.</p>
<p>Also, be very careful not to design any additional functionality that wasn&#8217;t on the wireframe into a design without consulting your team first, as these &#8220;added features&#8221; could cause serious scope creep.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/psd-layout/whats-a-wireframe-and-how-does-it-affect-my-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is &#8220;accessibility&#8221;?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/web-accessibility/what-is-accessibility/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/web-accessibility/what-is-accessibility/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 05:31:18 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=58</guid>
		<description><![CDATA[In a nutshell, web accessibility is making a website and its content accessible and usable to everyone, including those who have disabilities.]]></description>
			<content:encoded><![CDATA[<p>In a nutshell, accessibility (as it relates to the web) is making a website and its content accessible and usable to everyone, including those who have disabilities such as:</p>
<ul>
<li>visual impairment</li>
<li>physical impairment</li>
<li>auditory impairment</li>
<li>mental impairment</li>
</ul>
<p>Currently, accessibility seems to be a &#8220;it&#8217;d be nice if&#8230;&#8221; feature of websites. However, it&#8217;s actually a bigger deal than most businesses, designers, or developers think. Worldwide, 750 million people have a disability and three out of every 10 families are touched by a disability. In the United States, one in five people have some kind of disability and one in 10 has a severe disability.</p>
<h2>Oh no! I feel horrible I&#8217;m leaving all those people out!</h2>
<p>You&#8217;re not alone, in a usability study performed on 200 websites around the world, over 80% of websites are not performing at an W3C A accessibility level. Which means we have a ways to go before the internet is accessible to everyone.</p>
<h2>What if I don&#8217;t care about those people?</h2>
<p>Accessibility is still important, even if you don&#8217;t think those users are. (Shame on you by the way for thinking that, you mean person you!)</p>
<p>If you&#8217;re working with government or federally funded websites such as colleges, it&#8217;s actually against the law to not comply with Section 508 Accessibility Standards. Since June 2001, U. S. federal Web sites must comply with Section 508          of the Rehabilitation Act (29 U.S.C. §794.d).</p>
<p>Also, this is becoming more of a mainstream issue since 2006 when Target was sued for it&#8217;s non-compliance of Section 508 Accessibility Standards. So, if you want to work for any of those big name brands or legally conscious business people accessibility is important to you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/web-accessibility/what-is-accessibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are web-safe fonts?</title>
		<link>http://designmadebetter.com/web-design-expert-answers/web-fonts/web-safe-fonts/</link>
		<comments>http://designmadebetter.com/web-design-expert-answers/web-fonts/web-safe-fonts/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:45:20 +0000</pubDate>
		<dc:creator>Design Made Better</dc:creator>
				<category><![CDATA[Fonts]]></category>

		<guid isPermaLink="false">http://designmadebetter.com/?p=33</guid>
		<description><![CDATA[Since there are so many issues (security, legal, usability, etc) with having users download fonts to use on your website, many designers fall back on what are called web-safe fonts.]]></description>
			<content:encoded><![CDATA[<p>Technically, you can use any font on the web, however, the user must have it installed on their computer to have to render properly. Since there are so many issues (security, legal, usability, etc) with having users download fonts to use on your website, many designers fall back on what are called web-safe fonts. Web-safe fonts are fonts that are those fonts that are relatively common over cross operating system (windows, linux, mac).</p>
<p>There&#8217;s actually a <a title="Web Safe Fonts to Use in Web Design" href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html" target="_blank">great web-safe font list</a> that you can use when selecting which fonts to use on your web design project.</p>
]]></content:encoded>
			<wfw:commentRss>http://designmadebetter.com/web-design-expert-answers/web-fonts/web-safe-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

