<?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>Webmonkey &#187; design</title>
    <atom:link href="http://www.webmonkey.com/tag/design/feed/" rel="self" type="application/rss+xml" />
    <link>http://www.webmonkey.com</link>
    <description>The Web Developer&#039;s Resource</description>
    <lastBuildDate>Mon, 06 May 2013 17:29:19 +0000</lastBuildDate>
    <language>en-US</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <generator>http://wordpress.org/?v=3.4.2</generator>
    
    <item>
        <title>Tips, Tricks and Best Practices for Responsive Design</title>
        <link>http://www.webmonkey.com/2011/06/tips-tricks-and-best-practices-for-responsive-design/</link>
        <comments>http://www.webmonkey.com/2011/06/tips-tricks-and-best-practices-for-responsive-design/#comments</comments>
        <pubDate>Thu, 09 Jun 2011 16:00:08 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=51093</guid>
        		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[UI/UX]]></category>
		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[responsive design]]></category>
        <description><![CDATA[Unless you&#8217;ve been too busy wake boarding the Alps to notice, there&#8217;s a movement afoot amongst web designers &#8212; Responsive Design. Ethan Marcotte coined the term responsive design to describe the process of using liquid layouts and media queries to scale websites so that they fit any screen size. If you&#8217;ve never heard of responsive [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img src="http://www.webmonkey.com/wp-content/uploads/2011/04/mediaq.jpg" />Unless you&#8217;ve been too busy wake boarding the Alps to notice, there&#8217;s a movement afoot amongst web designers &#8212; Responsive Design. Ethan Marcotte coined the term <a href="http://www.alistapart.com/articles/responsive-web-design/">responsive design</a> to describe the process of using liquid layouts and media queries to scale websites so that they fit any screen size. If you&#8217;ve never heard of responsive design before, Marcotte&#8217;s introduction is well worth a read.</p>
<p>In a nutshell, responsive design means using fluid grids, fluid layouts and @media queries to adapt your website to the plethora of different screen sizes on today&#8217;s (and tomorrow&#8217;s) web. Whether your visitor is on a phone, an iPad or a gargantuan desktop monitor, your website adapts.</p>
<p>Responsive design becomes an even more appealing tool when you start, as Luke Wroblewski says, <a href="http://www.lukew.com/presos/preso.asp?26">designing for mobile first</a>. That is, start with the small screen. Strip your site down to its essence and then build from there. Starting from the bare bones ensures a great mobile site, and it forces you to really focus on what matters to your visitors.</p>
<p>So how do you go about building a good responsive site? Well, that depends on the individual website, but there are some common patterns that are starting to emerge. To help you get started with responsive design, here are a few nascent best practices we&#8217;ve gleaned from a variety of sources around the web:</p>
<ul>
<li><strong>Use @media</strong> to scale your layout for any screen, but remember that this alone isn&#8217;t really responsive design. </li>
<li><strong>Use liquid layouts</strong> that can accommodate any screen size. Don&#8217;t simply design one look for the iPhone/Android, one for tablets and one for the desktop. Keep it liquid, otherwise what happens when some new, intermediate screen size suddenly becomes popular?</li>
<li><strong>Roll your own grids</strong> based on the specifics of your site&#8217;s content. Canned grid systems will rarely fit the bill. The problem with canned grids is that they don&#8217;t fit your unique content. Create layouts <a href="http://www.markboulton.co.uk/journal/comments/a-richer-canvas">from the content out</a>, rather than the canvas (or grid) in.</li>
<li><strong>Start small</strong>. Start with the smallest size screen and work your way up, adding @media rules to float elements into the larger windows of tablet and desktop browsers.  Start with a narrow, single-column layout to handle mobile browsers and then scale up from there rather than the other way around.</li>
<li><strong>Use the <a href="https://github.com/scottjehl/Respond">Respond</a> or <a href="http://code.google.com/p/css3-mediaqueries-js/">CSS3 Media Queries</a> JavaScript libraries</strong> to bootstrap @media query support into older browsers that won&#8217;t otherwise know what to do with it. Starting with the smallest screen and working your way up means it&#8217;s the desktop browsers that need to handle @media, make sure older browsers work by using polyfills like Respond.</li>
<li><strong>Forget Photoshop</strong>, build your comps in the browser. It&#8217;s virtually impossible to mock up liquid layouts in Photoshop, start in the browser instead.  </li>
<li><strong>Scale images</strong> using <code>img { max-width: 100%; }</code>. For very large images, consider using something like <a href="https://github.com/scottjehl/Responsive-Images">Responsive Images</a> to offer the very smallest screens smaller image downloads and then use JavaScript to swap in larger images for larger screen.</li>
<li><strong>Embrace lazy loading</strong>. There may be items on your site, auxiliary content that&#8217;s nice to have, but not essential. <a href="http://adactio.com/journal/4497/">Load that content using JavaScript</a> after the primary content is done loading. </li>
<li><strong>Forget about perfect</strong>. Even with these suggestions you&#8217;re still leaving out users who have old browsers with JavaScript disabled. Such users are increasingly rare and if they see the mobile layout on their desktop, guess what, it&#8217;s not the end of the world. Your site is still perfectly usable.</li>
</ul>
<p>Keep in mind of course that responsive design is a young idea and new ideas &#8212; and new tools &#8212; pop up everyday. Think of these not as hard and fast rules, but guidelines to build on.</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/12/why-percentage-based-designs-dont-work-in-every-browser/">Why Percentage-Based Designs Don’t Work in Every Browser</a></li>
<li><a href="http://www.webmonkey.com/2011/04/how-to-have-your-media-queries-and-eat-ie-too/">How to Have Your @Media Queries and Eat IE Too</a></li>
<li><a href="http://www.webmonkey.com/2010/09/slide-show-time-rethinking-the-mobile-web/">Slide Show Time: Rethinking the Mobile Web</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2011/06/tips-tricks-and-best-practices-for-responsive-design/feed/</wfw:commentRss>
        <slash:comments>6</slash:comments>

        
    </item>
    
    <item>
        <title>Sneak a Peek at the Process Behind 37Signals&#8217; Redesigned Site</title>
        <link>http://www.webmonkey.com/2010/12/sneak-a-peek-at-the-process-behind-37signals-redesigned-site/</link>
        <comments>http://www.webmonkey.com/2010/12/sneak-a-peek-at-the-process-behind-37signals-redesigned-site/#comments</comments>
        <pubDate>Mon, 20 Dec 2010 18:37:44 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=49380</guid>
        		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[37signals]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[UI/UX]]></category>
        <description><![CDATA[If you&#8217;ve ever wanted a peek behind the scenes of a redesign, the 37Signals blog has a fascinating look at the design iterations for the company&#8217;s new website. 37Signals is best known for its Basecamp project management software and the Ruby on Rails platform, which grew out of the former. Even if you don&#8217;t like [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p>If you&#8217;ve ever wanted a peek behind the scenes of a redesign, the 37Signals blog has a fascinating look at the <a href="http://37signals.com/svn/posts/2705-behind-the-scenes-37signalscom-redesign">design iterations for the company&#8217;s new website</a>. </p>
<p>37Signals is best known for its <a href="http://basecamphq.com/">Basecamp</a> project management software and the Ruby on Rails platform, which grew out of the former.</p>
<p>Even if you don&#8217;t like the final design &#8212; and plenty of commenters on the blog post don&#8217;t seem to be big fans of the typography-focused redesign &#8212; the process behind it is worth looking at. Sometimes, seeing what ends up on the cutting room floor is more instructive than looking at the finished product.</p>
<p>The post should also make you feel a bit better if you too fail to magically draw up the right design on your first try. </p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/11/good-web-typography-is-easy-with-type-a-file/">Good Web Typography Is Easy With Type-a-File</a></li>
<li><a href="http://www.webmonkey.com/2010/06/design-for-readability-first/">Design for Readability First</a></li>
<li><a href="http://www.webmonkey.com/2009/10/boingboing_discovers_the_dark_side_of_css3/">Boing Boing&#8217;s Redesign Uncovers the Dark Side of Web Fonts</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/12/sneak-a-peek-at-the-process-behind-37signals-redesigned-site/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>Find Design Inspiration in Pattern Tap&#8217;s Minutiae</title>
        <link>http://www.webmonkey.com/2010/08/find-design-inspiration-in-pattern-taps-minutiae/</link>
        <comments>http://www.webmonkey.com/2010/08/find-design-inspiration-in-pattern-taps-minutiae/#comments</comments>
        <pubDate>Fri, 27 Aug 2010 19:32:34 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=48488</guid>
        		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Pattern Tap]]></category>
		<category><![CDATA[UI]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2010/08/patterntap.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2010/08/patterntap.jpg" alt="Find Design Inspiration in Pattern Tap&#8217;s Minutiae" /></div>The web is littered with design galleries showcasing beautiful websites, but most such galleries focus on the site as a whole &#8212; where do you turn if you just want some inspiration for a navigation menu or a really slick sign-up form?* We stumbled across Pattern Tap, which is a design gallery of sorts. But [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><a href="http://www.webmonkey.com/wp-content/uploads/2010/08/patterntap.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2010/08/patterntap.jpg" alt="" title="patterntap" width="580" class="alignleft size-full wp-image-48492" /></a>The web is littered with design galleries showcasing beautiful websites, but most such galleries focus on the site as a whole &#8212; where do you turn if you just want some inspiration for a navigation menu or a really slick sign-up form?*</p>
<p>We stumbled across <a href="http://patterntap.com/">Pattern Tap</a>, which is a design gallery of sorts. But it breaks the showcased site down into specifics, like sites with awesome navigation menus, great looking web forms or really eye-catching typography.</p>
<p>In some cases, the overall designs of the featured sites are great. In other cases, not so much. But that&#8217;s bound to happen with you start breaking a design down into tiny components like <a href="http://patterntap.com/tap/collection/code">great-looking code snippets</a> or often neglected aspects of web design like <a href="http://patterntap.com/tap/collection/good-copy">sites with really good copy</a>.</p>
<p>Pattern Tap also emphasizes the social stuff by offering &#8220;user sets&#8221; &#8212; if you find something you love, you can easily see who posted it to the site and what else they&#8217;ve contributed.</p>
<p>If you&#8217;re looking for some inspiration for that weekend web project, head to Pattern Tap and narrow your search. Just remember, Pattern Tap is a site for design inspiration, not your ticket to wholesale design theft.</p>
<p><em>* Yes, such a thing exists. Like pornography, you&#8217;ll know it when you see it.</em></p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/03/beautiful-websites-pictorys-ode-to-spring/">Beautiful Websites: Pictory&#8217;s Ode to Spring</a></li>
<li><a href="http://www.webmonkey.com/2010/03/beautiful-websites-former-apple-designers-amazing-photo-gallery/">Beautiful Websites: Former Apple Designer&#8217;s Amazing Photo Gallery</a></li>
<li><a href="http://www.webmonkey.com/2010/06/design-for-readability-first/">Design for Readability First</a></li>
<li><a href="http://www.webmonkey.com/2009/12/slick_web_design_gets_easier_thanks_to_css_3_s_transform_tools/">Slick Web Design Gets Easier Thanks to CSS 3&#8242;s Transform Tools</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/08/find-design-inspiration-in-pattern-taps-minutiae/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>New Flickr Is Bigger, Wider and Uncut</title>
        <link>http://www.webmonkey.com/2010/06/new-flickr-is-bigger-wider-and-uncut/</link>
        <comments>http://www.webmonkey.com/2010/06/new-flickr-is-bigger-wider-and-uncut/#comments</comments>
        <pubDate>Wed, 23 Jun 2010 20:38:41 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=47789</guid>
        		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Yahoo]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-sidebar.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-sidebar.jpg" alt="New Flickr Is Bigger, Wider and Uncut" /></div>The grandfather of online photo-sharing sites is rolling out a revamped design. Photo pages on Flickr have been redone to feature larger images, maps, and a much cleaner, more intuitive interface. For now, the new look is opt-in, but Flickr plans to make the new page design the default some time next month. To see [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><div id="attachment_47791" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-new.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-new.jpg" alt="" title="flickr-new" width="580" height="422" class="size-full wp-image-47791" /></a><p class="wp-caption-text">The new Flickr photo page</p></div></p>
<p>The grandfather of online photo-sharing sites is rolling out a revamped design. Photo pages on Flickr have been redone to feature larger images, maps, and a much cleaner, more intuitive interface.</p>
<p>For now, the new look is opt-in, but Flickr plans to make the new page design the default some time next month. To see the new photo page in action, log in to your Flickr account and visit any photo page. You&#8217;ll see an option to test the new look. You can also use <a href="http://www.flickr.com/help/general/#1539493">links provided by Flickr</a> to switch between the two experiences.</p>
<p><div id="attachment_47790" class="wp-caption alignright" style="width: 310px"><a href="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-old.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-old-300x208.jpg" alt="" title="flickr-old" width="300" height="208" class="size-medium wp-image-47790" /></a><p class="wp-caption-text">Flickr's old look: Click for larger.</p></div>
<p>It&#8217;s been a long time since Flickr did anything major to its main photo pages. Flickr started with a limited set of features and has been bolting new features onto the old design ever since. The result has been a slightly cluttered collection of buttons, tools and bits of data that can distract from the main point of the site &#8212; your photos.</p>
<p>The new look changes that, streamlining the navigation and tools while &#8220;embiggening&#8221; your photos (as Flickr refers to it).</p>
<p>The first thing you&#8217;ll notice is that the primary image is much larger. The long edge of your image is now 640 pixels across, a 30 percent increase. If that&#8217;s not big enough for you, just hover your mouse over any image and you&#8217;ll notice the icon changes to a magnifying glass. Click the image (or the new button between the Newer and Older buttons) and you&#8217;ll enter what Flickr calls the Lightbox view.</p>
<p>Similar to popular JavaScript slideshow tools, Flickr&#8217;s Lightbox view enlarges the image and overlays your screen with a slightly transparent black background. The nice thing about the new Lightbox view is that you can browse through photos without closing it, as well as leave comments and favorite photos.</p>
<p>Perhaps the single most-useful enhancement to casual viewing found in Flickr&#8217;s redesign is the addition of new keyboard shortcuts &#8212; yes, left and right arrow will now flip through photos just the way you&#8217;d expect. The keyboard navigation works in Lightbox mode as well.</p>
<p>The new look consolidates all the tools previously scattered around the page &#8212; adding notes, viewing EXIF data, editing images and a dozen more &#8212; into a single Actions dropdown menu. The result is a far less-cluttered page that still offers easy access to anything you&#8217;d like to do with your photos.</p>
<p><span id="more-47789"></span></p>
<p><div id="attachment_47792" class="wp-caption alignright" style="width: 310px"><a href="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-sidebar.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2010/06/flickr-sidebar.jpg" alt="" title="flickr-sidebar" width="300" height="374" class="size-full wp-image-47792" /></a><p class="wp-caption-text">The new Flickr sidebar shows a map and EXIF data.</p></div>The sidebar has been similarly cleaned up and widened. The thumbnail filmstrip preview is now five images wide, allowing for faster browsing through photostreams, groups or pools.</p>
<p>The filmstrip has dropped in priority though, moving down below the new top billing &#8212; the who, what, where and when of your images. </p>
<p>Assuming you uploaded your images with EXIF tags and geodata, the top portion of the sidebar will now tell viewers where the image was taken, the camera and lens used, and the date the photo was taken.</p>
<p>Just below that is a very slick map that shows a country-level view of where the photo was taken. Hover your mouse over the map, and it will automatically zoom in to a city-level view. Hover the mouse over the actual map pin, and the map will zoom in again.</p>
<p>If you want an even more detailed look, just click the map, and it will bring up a larger map that overlays the current page and allows you to zoom and pan around the area. It would be nice if the overlay showed nearby photos as well, but it doesn&#8217;t, though there is a link that will take you to the Nearby map page.</p>
<p>Beneath the map you&#8217;ll find a quick overview of your image &#8212; how many times it has been viewed, the number of comments and how many people call it a favorite.</p>
<p>The reorganized thumbnail preview area is now context-sensitive. For example, if you land on a photo page while browsing a user&#8217;s photostream, then the photostream thumbnails are shown. If the photo is part of any sets, groups or pools, clicking on those will bring up a filmstrip of the next photo in the group. However, if you land on a photo page while browsing through a group, the group&#8217;s thumbnail filmstrip will be shown by default. It&#8217;s a subtle change, but it makes browsing images much more intuitive.</p>
<p>Flickr &#8220;favorites&#8221; have always been a sort of quick-comment feature, and Flickr is embracing that use even more by moving Favorites inline with comments. Comments have also been revamped, so that posting a comment no longer requires a page refresh. (That it previously did gives you some idea of just how long Flickr has been around.)</p>
<p>While Flickr&#8217;s redesigned photo page is a vast improvement, it&#8217;s not without a few quirks. For example, some of the links on the photo page bring up inline overlays &#8212; like Lightbox view and the map &#8212; while the rest do not. In testing the site yesterday I found myself sometimes hesitating, trying to decide if I was about the leave the photo page or if an overlay would appear. The varying behavior might make the new page a tad confusing for those not familiar with Flickr, because you never know exactly what&#8217;s going to happen when you click a link. </p>
<p>For those using Flickr every day, such quirks will quickly fade and there&#8217;s no doubt that the redesign is a vast improvement. Flickr also claims that page load times are faster, though we didn&#8217;t notice a huge difference while previewing the test site. Still, loading a larger photo without slowing down the page will likely be good enough for most users.</p>
<p><a href="http://blog.flickr.net/en/2010/06/23/a-new-photo-experience-your-photos-happier/">Flickr&#8217;s official blog post</a> has more details if you&#8217;re curious.</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://www.webmonkey.com/2010/06/flickr-hooks-up-with-facebook-for-photo-sharing-love/">Flickr Hooks Up With Facebook for Photo-Sharing Love</a></li>
<li><a href="http://www.webmonkey.com/2009/10/flickr_adds_people_tagging_for_finding_friends_in_photos/">Flickr Adds People-Tagging for Finding Friends in Photos</a></li>
<li><a href="http://www.webmonkey.com/2009/06/flickr_makes_it_simple_to_post_photos_on_twitter/">Flickr Makes it Simple to Post Photos on Twitter</a></li>
<li><a href="http://www.webmonkey.com/2010/02/get_started_with_the_flickr_api/">Using the Flickr API</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/06/new-flickr-is-bigger-wider-and-uncut/feed/</wfw:commentRss>
        <slash:comments>11</slash:comments>

        
    </item>
    
    <item>
        <title>Layers</title>
        <link>http://www.webmonkey.com/2010/02/layers/</link>
        <comments>http://www.webmonkey.com/2010/02/layers/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=235</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[Many image-processing programs, like Adobe Photoshop, allow you to build images in layers. These layers are created one at a time and placed on top of each other to assemble the whole image. While the file is a pile of little layered images, you can manipulate each layer individually and look at how each change [...]]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p>Many image-processing programs, like Adobe Photoshop, allow you to build images in layers. These layers are created one at a time and placed on top of each other to assemble the whole image. While the file is a pile of little layered images, you can manipulate each layer individually and look at how each change will alter the completed picture.

</p><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/layers/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>CLUT file</title>
        <link>http://www.webmonkey.com/2010/02/clut_file/</link>
        <comments>http://www.webmonkey.com/2010/02/clut_file/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=77</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[UI/UX]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[In computer graphics, a color look-up table, or CLUT, is the set of available colors for a given application. For example, a 24-bit system can display 16 million unique colors, but a given program would use only 256 of them at a time if the display is in 256-color mode. The CLUT in this case [...]]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p>In computer graphics, a color look-up table, or CLUT, is the set of available colors for a given application.

</p><p>For example, a 24-bit system can display 16 million unique colors, but a given program would use only 256 of them at a time if the display is in 256-color mode. The CLUT in this case would consist of the 16 million colors, but the program&#8217;s <a href="/2010/02/Palette" title="Reference:Palette">palette</a> would contain only the 256-color subset. To avoid dithering (i.e., varying the pattern of dots in an image) on 8-bit machines, you should only use colors from a predesignated CLUT.

</p><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/clut_file/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Font</title>
        <link>http://www.webmonkey.com/2010/02/font/</link>
        <comments>http://www.webmonkey.com/2010/02/font/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=244</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[A font is the overall design for a set of characters. It describes the size, weight, and spacing of a character and shouldn&#8217;t be confused with a typeface, which is a more general term. Courier is a typeface; Courier 24-point bold is a font. Computers display fonts in either a bitmap or a vector format. [...]]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled -->A font is the overall design for a set of characters. It describes the size, weight, and spacing of a character and shouldn&#8217;t be confused with a typeface, which is a more general term.



Courier is a typeface; Courier 24-point bold is a font. Computers display fonts in either a bitmap or a vector format. In a bitmapped font, each character is represented by an arrangement of dots. In a vector font system, the shape or outline of each character is defined geometrically. Since a vector font is scalable according to the defined outline, a vector system can make many differently sized fonts from one defined set of characters. Currently, the most widely used vector font systems are PostScript and TrueType.<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/font/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>CMYK</title>
        <link>http://www.webmonkey.com/2010/02/cmyk/</link>
        <comments>http://www.webmonkey.com/2010/02/cmyk/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=79</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[CMYK stands for cyan magenta yellow and blacK and is a color system used in the offset printing of full-color documents. Offset uses cyan, magenta, yellow, and black inks and is often referred to as &#8220;four-color&#8221; printing. Monitors use red, green, and blue light instead, so they display images using a different color system called [...]]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p>CMYK stands for cyan magenta yellow and blacK and is a color system used in the offset printing of full-color documents.

</p><p>Offset uses cyan, magenta, yellow, and black inks and is often referred to as &#8220;four-color&#8221; printing. Monitors use red, green, and blue light instead, so they display images using a different color system called <a href="/2010/02/RGB" title="Reference:RGB"> RGB</a>. One of the great problems of the digital age has been matching colors between these two systems; i.e., taking a digital RGB image and making it look the same in print using CMYK. These problems are addressed by applications such as the <a href="/2010/02/PMS" title="Reference:PMS"> Pantone Matching System</a>.

</p><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/cmyk/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>GIMP</title>
        <link>http://www.webmonkey.com/2010/02/gimp/</link>
        <comments>http://www.webmonkey.com/2010/02/gimp/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=247</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[GIMP stands for GNU Image Manipulation Program, and is a free software program for image authoring and composition, and photo retouching. The program has a scripting interface and can be expanded with plug-ins and extensions.]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p><br />

GIMP stands for GNU Image Manipulation Program, and is a free software program for image authoring and composition, and photo retouching. The program has a scripting interface and can be expanded with plug-ins and extensions.

</p><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/gimp/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Crop</title>
        <link>http://www.webmonkey.com/2010/02/crop/</link>
        <comments>http://www.webmonkey.com/2010/02/crop/#comments</comments>
        <pubDate>Mon, 15 Feb 2010 20:45:47 +0000</pubDate>

                <dc:creator>Webmonkey Staff</dc:creator>

        <guid isPermaLink="false">http://stag.wired.com/primate/?p=89</guid>
        		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[wiki]]></category>
        <description><![CDATA[To crop means to cut the pieces of an image that you don&#8217;t need. Cropping differs from resizing because when you crop an image you retain the dimensions of the image. Resizing an image actually shrinks the image into smaller dimensions.]]></description>

            <content:encoded><![CDATA[<!-- wpautop disabled --><p>To crop means to cut the pieces of an image that you don&#8217;t need.

</p><p>Cropping differs from resizing because when you crop an image you retain the dimensions of the image. Resizing an image actually shrinks the image into smaller dimensions.

</p><div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2010/02/crop/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    </channel>
</rss>
