<?xml version="1.0"?>
<News hasArchived="true" page="8080" pageCount="10742" pageSize="10" timestamp="Wed, 05 Aug 2026 15:42:40 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8080">
<NewsItem contentIssues="true" id="38211" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38211">
<Title>A Guide to Web Components</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://robdodson.me" rel="nofollow external" class="bo">Rob Dodson</a> (<a href="http://twitter.com/rob_dodson" rel="nofollow external" class="bo">@rob_dodson</a>). Rob and I were going back and forth in CodePen support getting <a href="http://www.polymer-project.org/" rel="nofollow external" class="bo">Polymer</a> (a web components polyfill, kinda) working on a demo of his. We did get it working, and things kind of evolved into this article. Take it away Rob.</em></p>
    <p></p>
    <p>Recently I was working with a client to train their internal teams on how to build web applications. During this process it occurred to me that the way we presently architect the front-end is very strange and even a bit broken. In many instances you’re either copying huge chunks of HTML out of some doc and then pasting that into your app (Bootstrap, Foundation, etc.), or you’re sprinkling the page with jQuery plugins which have to be configured using JavaScript . It puts us in the rather unfortunate position of having to choose between bloated HTML or mysterious HTML, and often we choose <strong>both.</strong></p>
    <p>In an ideal scenario, the HTML language would be expressive enough to create complex UI widgets and also extensible so that we, the developers, could fill in any gaps with our own tags. Today, this is finally possible through a new set of standards called <strong>Web Components.</strong></p>
    <h3>Web Components?</h3>
    <p>Web Components are a collection of standards which are working their way through the W3C and landing in browsers as we speak. In a nutshell, they allow us to bundle markup and styles into custom HTML elements. What's truly amazing about these new elements is that they fully encapsulate all of their HTML and CSS. That means the styles that you write always render as you intended, and your HTML is safe from the prying eyes of external JavaScript.</p>
    <p>If you want to play with native Web Components I'd recommend using <a href="https://www.google.com/intl/en/chrome/browser/canary.html" rel="nofollow external" class="bo">Chrome Canary</a>, since it has the best support. Be sure to enable the following settings in <code><a href="chrome://flags">chrome://flags</a></code>.</p>
    <ul>
    <li>Experimental JavaScript</li>
    <li>Experimental Web Platform Features</li>
    <li>HTML Imports</li>
    </ul>
    <h3>A Practical Example</h3>
    <p>Think about how you currently implement an image slider, it might look something like this:</p>
    <pre><code>&lt;div id="slider"&gt;&#x000A;      &lt;input checked="" type="radio" name="slider" id="slide1" selected="false"&gt;&#x000A;      &lt;input type="radio" name="slider" id="slide2" selected="false"&gt;&#x000A;      &lt;input type="radio" name="slider" id="slide3" selected="false"&gt;&#x000A;      &lt;input type="radio" name="slider" id="slide4" selected="false"&gt;&#x000A;      &lt;div id="slides"&gt;&#x000A;        &lt;div id="overflow"&gt;&#x000A;          &lt;div class="inner"&gt;&#x000A;            &lt;article&gt;&#x000A;              &lt;img src="./rock.jpg" alt="an interesting rock"&gt;&#x000A;            &lt;/article&gt;&#x000A;            &lt;article&gt;&#x000A;              &lt;img src="./grooves.jpg" alt="some neat grooves"&gt;&#x000A;            &lt;/article&gt;&#x000A;            &lt;article&gt;&#x000A;              &lt;img src="./arch.jpg" alt="a rock arch"&gt;&#x000A;            &lt;/article&gt;&#x000A;            &lt;article&gt;&#x000A;              &lt;img src="./sunset.jpg" alt="a dramatic sunset"&gt;&#x000A;            &lt;/article&gt;&#x000A;          &lt;/div&gt;&#x000A;        &lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;      &lt;label for="slide1"&gt;&lt;/label&gt;&#x000A;      &lt;label for="slide2"&gt;&lt;/label&gt;&#x000A;      &lt;label for="slide3"&gt;&lt;/label&gt;&#x000A;      &lt;label for="slide4"&gt;&lt;/label&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <p>See the Pen <a href="http://codepen.io/robdodson/pen/rCGvJ" rel="nofollow external" class="bo">CSS3 Slider</a> by Rob Dodson (<a href="http://codepen.io/robdodson" rel="nofollow external" class="bo">@robdodson</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p><small>Image slider adapted from <a href="http://csscience.com/responsiveslidercss3/" rel="nofollow external" class="bo">CSScience</a>. Images courtesy of <a href="http://www.flickr.com/photos/eliya" rel="nofollow external" class="bo">Eliya Selhub</a>.</small></p>
    <p>That's a decent chunk of HTML, and we haven't even included the CSS yet! But imagine if we could remove all of that extra cruft and reduce it down to only the important bits. What would that look like?</p>
    <pre><code>&lt;img-slider&gt;&#x000A;      &lt;img src="./sunset.jpg" alt="a dramatic sunset"&gt;&#x000A;      &lt;img src="./arch.jpg" alt="a rock arch"&gt;&#x000A;      &lt;img src="./grooves.jpg" alt="some neat grooves"&gt;&#x000A;      &lt;img src="./rock.jpg" alt="an interesting rock"&gt;&#x000A;    &lt;/img-slider&gt;</code></pre>
    <p>Not too shabby! We've ditched the boilerplate and the only code that's left is the stuff we care about. This is the kind of thing that Web Components will allow us to do. But before I delve into the specifics I'd like to tell you another story.</p>
    <h3>Hidden in the shadows</h3>
    <p>For years the browser makers have had a sneaky trick hidden up their sleeves. Take a look at this <code>&lt;video&gt;</code> tag and really think about all the visual goodies you get with just one line of HTML.</p>
    <pre><code>&lt;video src="./foo.webm" controls&gt;&lt;/video&gt;</code></pre>
    <p>There's a play button, a scrubber, timecodes and a volume slider. Lots of stuff that you didn't have to write any markup for, it just appeared when you asked for <code>&lt;video&gt;</code>.</p>
    <p>But what you’re actually seeing is an illusion. The browser makers needed a way to guarantee that the tags they implemented would always render the same, regardless of any wacky HTML, CSS or JavaScript we might already have on the page. To do this, they created a secret passage way where they could hide their code and keep it out of our hot little hands. They called this secret place <strong>the Shadow DOM.</strong></p>
    <p>If you happen to be running Google Chrome you can open your Developer Tools and enable the <code>Show Shadow DOM</code> flag. That'll let you inspect the <code>&lt;video&gt;</code> element in more detail.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/show-shadow-dom.jpg" alt="" style="max-width: 100%; height: auto;">
    Enabling viewing of the shadow DOM in Chrome Dev Tools
    
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/video-shadow-dom_1.jpg" alt="" style="max-width: 100%; height: auto;"><br>
    Inspecting the shadow DOM of a <code>&lt;video&gt;</code> tag
    
    <p>Inside you'll find that there's a ton of HTML all hidden away. Poke around long enough and you'll discover the aforementioned play button, volume slider, and various other elements.</p>
    <p>Now, think back to our image slider. What if we <em>all</em> had access to the shadow DOM and the ability to declare our own tags like <code>&lt;video&gt;</code>?  Then we could actually implement and use our custom <code>&lt;img-slider&gt;</code> tag.</p>
    <p>Let’s take a look at how to make this happen, using the first pillar of Web Components, the template.</p>
    <h3>Templates</h3>
    <p>Every good construction project has to start with a blueprint, and with Web Components that blueprint comes from the new <code>&lt;template&gt;</code> tag. The template tag allows you to store some markup on the page which you can later clone and reuse. If you've worked with libraries like mustache or handlebars before, then the <code>&lt;template&gt;</code> tag should feel familiar.</p>
    <pre><code>&lt;template&gt;&#x000A;      &lt;h1&gt;Hello there!&lt;/h1&gt;&#x000A;      &lt;p&gt;This content is top secret :)&lt;/p&gt;&#x000A;    &lt;/template&gt;</code></pre>
    <p>Everything inside a template is considered inert by the browser. This means tags with external sources (i.e. <code>&lt;img&gt;</code>, <code>&lt;audio&gt;</code>, , etc.) do not make HTTP requests and <code>&lt;script&gt;</code> tags do not execute. It also means that nothing from within the template is rendered on the page until we activate it using JavaScript.</p>
    <p>So the first step in creating our <code>&lt;img-slider&gt;</code> is to put all of its HTML and CSS into a <code>&lt;template&gt;</code>.</p>
    <p>See the Pen <a href="http://codepen.io/robdodson/pen/EeLav" rel="nofollow external" class="bo">CSS3 Slider Template</a> by Rob Dodson (<a href="http://codepen.io/robdodson" rel="nofollow external" class="bo">@robdodson</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>Once we've done this, we're ready to move it into the shadow DOM.</p>
    <h3>Shadow DOM</h3>
    <p>To really make sure that our HTML and CSS doesn't adversely affect the consumer we sometimes resort to iframes. They do the trick, but you wouldn't want to build your entire application in 'em.</p>
    <p>Shadow DOM gives us the best features of iframes, style and markup encapsulation, without nearly as much bloat.</p>
    <p>To create shadow DOM, select an element and call its <code>createShadowRoot</code> method (or <code>webkitCreateShadowRoot</code> if you're using Chrome 30 or Safari). This will return a document fragment which you can then fill with content.</p>
    <pre><code>&lt;div class="container"&gt;&lt;/div&gt;&#x000A;    &#x000A;    &lt;script&gt;&#x000A;      var host = document.querySelector('.container');&#x000A;      var root = host.createShadowRoot();&#x000A;      root.innerHTML = '&lt;p&gt;How &lt;em&gt;you&lt;/em&gt; doin?&lt;/p&gt;'&#x000A;    &lt;/script&gt;</code></pre>
    <h4>Shadow Host</h4>
    <p>In shadow DOM parlance, the element that you call <code>createShadowRoot</code> on is known as the <strong>Shadow Host.</strong> It's the only piece visible to the user, and it's where you would ask the user to supply your element with content.</p>
    <p>If you think about our <code>&lt;video&gt;</code> tag from before, the <code>&lt;video&gt;</code> element itself is the shadow host, and the contents are the <code>&lt;source&gt;</code> tags you nest inside of it.</p>
    <pre><code>&lt;video&gt;&#x000A;      &lt;source src="trailer.mp4" type="video/mp4"&gt;&#x000A;      &lt;source src="trailer.webm" type="video/webm"&gt;&#x000A;      &lt;source src="trailer.ogv" type="video/ogg"&gt;&#x000A;    &lt;/video&gt;</code></pre>
    <h4>Shadow Root</h4>
    <p>The document fragment returned by <code>createShadowRoot</code> is known as the <strong>Shadow Root.</strong> The shadow root, and its descendants, are hidden from the user, but they're what the browser will actually render when it sees our tag.</p>
    <p>In the <code>&lt;video&gt;</code> example, the play button, scrubber, timecode, etc. are all descendants of the shadow root. They show up on the screen but their markup is not visible to the user.</p>
    <h4>Shadow Boundary</h4>
    <p>Any HTML and CSS inside of the shadow root is protected from the parent document by an invisible barrier called the <strong>Shadow Boundary.</strong> The shadow boundary prevents CSS in the parent document from bleeding into the shadow DOM, and it also prevents external JavaScript from traversing into the shadow root.</p>
    <p>Translation: Let's say you have a style tag in the shadow DOM that specifies all h3's should have a <code>color</code> of <code>red</code>. Meanwhile, in the parent document, you have a style that specifies h3's should have a <code>color</code> of <code>blue</code>. In this instance, h3's appearing within the shadow DOM will be red, and h3's outside of the shadow DOM will be blue. The two styles will happily ignore each other thanks to our friend, the shadow boundary.</p>
    <p>And if, at some point, the parent document goes looking for h3's with <code>$('h3')</code>, the shadow boundary will prevent any exploration into the shadow root and the selection will only return h3's that are external to the shadow DOM.</p>
    <p>This level of privacy is something that we've dreamed about and worked around for years. To say that it will change the way we build web applications is a total understatement.</p>
    <h3>Shadowy Sliders</h3>
    <p>To get our <code>img-slider</code> into the shadow DOM we'll need to create a shadow host and populate it with the contents of our template.</p>
    <pre><code>&lt;template&gt;&#x000A;      &lt;!-- Full of slider awesomeness --&gt;&#x000A;    &lt;/template&gt;&#x000A;    &#x000A;    &lt;div class="img-slider"&gt;&lt;/div&gt;&#x000A;    &#x000A;    &lt;script&gt;&#x000A;      // Add the template to the Shadow DOM&#x000A;      var tmpl = document.querySelector('template');&#x000A;      var host = document.querySelector('.img-slider');&#x000A;      var root = host.createShadowRoot();&#x000A;      // host.webkitCreateShadowRoot() in Safari and Chrome 30&#x000A;      root.appendChild(tmpl.content.cloneNode(true));&#x000A;    &lt;/script&gt;</code></pre>
    <p>In this instance we've created a <code>div</code> and given it the class <code>img-slider</code> so it can act as our shadow host.</p>
    <p>We select the template and access the internals with the <code>content</code> keyword. Calling <code>cloneNode(true)</code> returns a deep copy of those internals which we then append to the shadow root.</p>
    <p>If you're using Chrome or Safari you can actually see this working in the following pen.</p>
    <p>See the Pen <a href="http://codepen.io/robdodson/pen/GusaF" rel="nofollow external" class="bo">CSS3 Slider Shadow DOM</a> by Rob Dodson (<a href="http://codepen.io/robdodson" rel="nofollow external" class="bo">@robdodson</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <h4>Insertion Points</h4>
    <p>At this point our <code>img-slider</code> is inside the shadow DOM but the image paths are hard coded. Just like the <code>&lt;source&gt;</code> tags nested inside of <code>&lt;video&gt;</code>, we'd like the images to come from the user, so we'll have to invite them over from the shadow host.</p>
    <p>To pull items into the shadow DOM we use the new <code>&lt;content&gt;</code> tag. The <code>&lt;content&gt;</code> tag uses CSS selectors to cherry-pick elements from the shadow host and project them into the shadow DOM. These projections are known as <strong>insertion points.</strong></p>
    <p>We'll make it easy on ourselves and assume that the slider always has four images, that way we can create four insertion points using <code>nth-of-type</code>.</p>
    <pre><code>&lt;template&gt;&#x000A;      ...&#x000A;      &lt;div class="inner"&gt;&#x000A;        &lt;article&gt;&#x000A;          &lt;content select="img:nth-of-type(1)"&gt;&lt;/content&gt;&#x000A;        &lt;/article&gt;&#x000A;        &lt;article&gt;&#x000A;          &lt;content select="img:nth-of-type(2)"&gt;&lt;/content&gt;&#x000A;        &lt;/article&gt;&#x000A;        &lt;article&gt;&#x000A;          &lt;content select="img:nth-of-type(3)"&gt;&lt;/content&gt;&#x000A;        &lt;/article&gt;&#x000A;        &lt;article&gt;&#x000A;          &lt;content select="img:nth-of-type(4)"&gt;&lt;/content&gt;&#x000A;        &lt;/article&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/template&gt;</code></pre>
    <p>Now we can populate our <code>img-slider</code>.</p>
    <pre><code>&lt;div class="img-slider"&gt;&#x000A;      &lt;img src="./rock.jpg" alt="an interesting rock"&gt;&#x000A;      &lt;img src="./grooves.jpg" alt="some neat grooves"&gt;&#x000A;      &lt;img src="./arch.jpg" alt="a rock arch"&gt;&#x000A;      &lt;img src="./sunset.jpg" alt="a dramatic sunset"&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <p>This is really cool! We've cut the amount of markup that the user sees way down. But why stop here? We can take things a step further and make this more semantic by turning our <code>img-slider</code> into its very own HTML element.</p>
    <h3>Custom Elements</h3>
    <p>Creating your own HTML element might sound intimidating but it's actually quite easy. In Web Components speak, this new element is a <strong>Custom Element</strong>, and the only two requirements are that its name must contain a dash, and its prototype must extend <code>HTMLElement</code>.</p>
    <p>Let's take a look at how that might work.</p>
    <pre><code>&lt;template&gt;&#x000A;      &lt;!-- Full of image slider awesomeness --&gt;&#x000A;    &lt;/template&gt;&#x000A;    &#x000A;    &lt;script&gt;&#x000A;      // Grab our template full of slider markup and styles&#x000A;      var tmpl = document.querySelector('template');&#x000A;    &#x000A;      // Create a prototype for a new element that extends HTMLElement&#x000A;      var ImgSliderProto = Object.create(HTMLElement.prototype);&#x000A;    &#x000A;      // Setup our Shadow DOM and clone the template&#x000A;      ImgSliderProto.createdCallback = function() {&#x000A;        var root = this.createShadowRoot();&#x000A;        root.appendChild(tmpl.content.cloneNode(true));&#x000A;      };&#x000A;    &#x000A;      // Register our new element&#x000A;      var ImgSlider = document.register('img-slider', {&#x000A;        prototype: ImgSliderProto&#x000A;      });&#x000A;    &lt;/script&gt;</code></pre>
    <p>The <code>Object.create</code> method returns a new prototype which extends <code>HTMLElement</code>. When the parser finds our tag in the document it will check to see if it has a method named <code>createdCallback</code>. If it finds this method it will run it immediately. This is a good place to do setup work, so we create some Shadow DOM and clone our template into it.</p>
    <p>We pass the tag name and prototype to a new method on the <code>document</code>, called <code>register</code>, and after that we're ready to go.</p>
    <p>Now that our element is registered there are a few different ways to use it. The first, and most straightforward, is to just use the <code>&lt;img-slider&gt;</code> tag somewhere in our HTML. But we can also call <code>document.createElement("img-slider")</code> or we can use the constructor that was returned by <code>document.register</code> and stored in the <code>ImgSlider</code> variable. It's up to you which style you prefer.</p>
    <h3>Browser Support</h3>
    <p>Support for the various standards that makeup Web Components is currently spotty, though improving all the time. This table illustrates where we're presently at.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/support.jpg" alt="" style="max-width: 100%; height: auto;"><br>
    Browser support for the various parts of web components. At the time of this writing, cutting edge Chrome is your best bet.
    
    <p>But don't let the table discourage you from using them! The smarties at Mozilla and Google have been hard at work building polyfill libraries which sneak support for Web Components into all modern browsers! This means you can start playing with these technologies <em>today</em> and give feedback to the folks writing the specs. That feedback is important so we don't end up with stinky, hard to use syntax.</p>
    <p>Let's look at how we could rewrite our <code>img-slider</code> using Google's polyfill library, <a href="http://www.polymer-project.org/" rel="nofollow external" class="bo">Polymer.</a></p>
    <h3>Polymer to the Rescue!</h3>
    <p>Polymer adds a new tag to the browser, <code>&lt;polymer-element&gt;</code>, which automagically turns templates into shadow DOM and registers custom elements for us. All we need to do is to tell Polymer what name to use for the tag and to make sure we include our template markup.</p>
    <p>See the Pen <a href="http://codepen.io/robdodson/pen/blfGh" rel="nofollow external" class="bo">Polymer Slider</a> by Rob Dodson (<a href="http://codepen.io/robdodson" rel="nofollow external" class="bo">@robdodson</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>I find it's often easier to create elements using Polymer because of all the niceties built into the library. This includes two-way binding between elements and models, automatic node finding and support for other new standards like Web Animations and Pointer Events. Also, the developers on the <a href="https://groups.google.com/forum/#!forum/polymer-dev" rel="nofollow external" class="bo">polymer-dev mailing list</a> are extremely active and helpful, which is great when you're first learning the ropes.</p>
    <p>This is just a tiny example of what Polymer can do, so be sure to <a href="http://www.polymer-project.org/" rel="nofollow external" class="bo">visit its project page</a> and also checkout Mozilla's alternative, <a href="http://www.x-tags.org/" rel="nofollow external" class="bo">X-Tags.</a></p>
    <h3>Issues</h3>
    <p>Any new standard can be controversial and in the case of Web Components it seems that they are especially polarizing. Before we wrap up, I want to open up for discussion some of the feedback I've heard over the past few months and give my take on it.</p>
    <h4>OMG it's XML!!!</h4>
    <p>I think the thing that probably scares most developers when they first see Custom Elements is the notion that it will turn the document into one big pile of XML, where everything on the page has some bespoke tag name and, in this fashion, we'll make the web pretty much unreadable. That's a valid argument so I decided to kick the bees' nest and <a href="https://groups.google.com/forum/#!searchin/polymer-dev/xml/polymer-dev/lzvaDViB_Ow/VtbeIqX0Ap0J" rel="nofollow external" class="bo">bring it up on the Polymer mailing list.</a></p>
    <p>The back and forth discussion is pretty interesting but I think the general consensus is that we're just going to have to experiment to see what works and what doesn't. Is it better, and more semantic, to see a tag name like <code>&lt;img-slider&gt;</code> or is our present "div soup" the only way it should be? Alex Russell composed <a href="http://infrequently.org/2013/11/long-term-web-semantics/" rel="nofollow external" class="bo">a very thoughtful post on this subject</a> and I'd recommend everyone take the time to read it before making up their mind.</p>
    <h4>SEO</h4>
    <p>At this moment it's unclear (at least to me) how well crawlers support Custom Elements and Shadow DOM. <a href="http://www.polymer-project.org/faq.html#seo" rel="nofollow external" class="bo">The Polymer FAQ states</a>:</p>
    <blockquote><p>Search engines have been dealing with heavy AJAX based application for some time now. Moving away from JS and being more declarative is a good thing and will generally make things better.</p></blockquote>
    <p>Others have pointed out that this explanation falls short and there's <a href="https://groups.google.com/forum/#!searchin/polymer-dev/seo/polymer-dev/TMBtl3_bDT0/VwR9-t6V--AJ" rel="nofollow external" class="bo">a discussion on the topic over in the Polymer mailing list.</a></p>
    <p>This will need to be worked out before Web Components receive wide adoption but I'm optimistic they'll get it right, primarily because Google is really pushing for it and it wouldn't make sense to implement something that stymied their search engine.</p>
    <h4>Accessibility</h4>
    <p>Obviously when you're hiding markup in secret shadow DOM sandboxes the issue of accessibility becomes pretty important. Steve Faulkner took a look at accessibility in shadow DOM and seemed to be satisfied with what he found.</p>
    <blockquote><p>Results from initial testing indicate that inclusion of ARIA roles, states and properties in content wholly inside the Shadow DOM works fine. The accessibility information is exposed correctly via the accessibility API. Screen readers can access content in the Shadow DOM without issue.</p></blockquote>
    <p><a href="http://blog.paciellogroup.com/2012/07/notes-on-web-components-aria/" rel="nofollow external" class="bo">The full post is available here.</a></p>
    <p>Surely there will be bumps along the way but that sounds like a pretty great start!</p>
    <h4>Style tags? Um, no thanks.</h4>
    <p>Unfortunately <code>&lt;link&gt;</code> tags do not work inside of the Shadow DOM, which means the only way to pull in external CSS is through <code>@import</code>. In other words, <code>&lt;style&gt;</code> tags are—for the moment—unavoidable.</p>
    <p>Keep in mind that the styles we're talking about are relevant only to a component, whereas we've previously been trained to favor external files because they often affect our entire application. So is it such a bad thing to put a <code>&lt;style&gt;</code> tag inside of an element, if all of those styles are scoped just to that one entity? Personally I think it's OK, but the option of external files would be very nice to have.</p>
    <h3>Now it's your turn</h3>
    <p>It's up to us to figure out where these standards should go and what best practices will guide them. Give <a href="http://www.polymer-project.org/" rel="nofollow external" class="bo">Polymer</a> a shot, and also look at Mozilla's alternative to Polymer, <a href="http://www.x-tags.org/" rel="nofollow external" class="bo">X-tags</a> (which has support all the way down to Internet Explorer 9).</p>
    <p>Also, make sure you reach out to <a href="https://groups.google.com/forum/#!forum/polymer-dev" rel="nofollow external" class="bo">the developers at Google</a> and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=889230" rel="nofollow external" class="bo">Mozilla</a> who are driving the bus on these standards. It'll take our feedback to properly mold these tools into something we all want to use.</p>
    <p>While there are still some rough edges, I think Web Components will eventually usher in a new style of application development, something more akin to snapping together Legos and less like our current approach, which is often plagued by excess boilerplate. I'm pretty excited by where all of this is heading, and I look forward to what the future might hold.</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/modular-future-web-components/" rel="nofollow external" class="bo">A Guide to Web Components</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Rob Dodson (@rob_dodson). Rob and I were going back and forth in CodePen support getting Polymer (a web components polyfill, kinda) working on a demo of his. We...</Summary>
<Website>http://css-tricks.com/modular-future-web-components/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38211/guest@my.umbc.edu/f4119535d59098a0b8e4c8a87a504bdc/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 10:17:34 -0500</PostedAt>
<EditAt>Mon, 11 Nov 2013 10:17:34 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="38208" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38208">
<Title>RT Downtime Notice for 12-14-2013</Title>
<Body>
<![CDATA[
    <div class="html-content">I wanted to reach out to this group and provide an update on some system upgrades scheduled for RT over the next 8 months or so.<br><br>RT has been in place almost 5 years now running on the same hardware. The first phase is to upgrade the database server hardware. <br><br>This update will occur the morning of December 14, 2013 starting at 6am with an anticipated completion by 2pm. A version of this new setup will be available for testing the week of 12-3-2013. Please share any issues you may find asap so we can do our best to remedy the problem.<br><br>This upgrade will provide some improvements in stability and performance.<br><br>Our second phase will be the migration of the RT Application to new hardware. This is currently schedule to be completed by March 2014.<br><br>Both of the phases, although complex for the technical team, should be seamless to the end-user community as we are not changing the actual application.<br><br>The final phase (3) will be completed in June of 2014 and this will involve the actual application used by all users of RT. This phase will require more testing and possible training to power users depending on the new features that may be available by that time. Currently we are on version 4.0.6 and version 4.2.0 is now available. I will review the product for the most stable and up to date version available by the beginning Q2 2014.<br><br>Please feel free to provide any feedback or questions concerning any of the 3 phases I have identified.<br><br>Lastly, John and I have discussed the possibility of having a users group just prior to the holidays to catch up on the many uses of RT in your offices as well as introduce some new practices being employed by many new members of the RT community.<br><br>Thanks<br><br>Joe<br>
    </div>
]]>
</Body>
<Summary>I wanted to reach out to this group and provide an update on some system upgrades scheduled for RT over the next 8 months or so.  RT has been in place almost 5 years now running on the same...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38208/guest@my.umbc.edu/4e766a40c56d867280827be9e235370e/api/pixel</TrackingUrl>
<Group token="rt">RT - Request Tracker</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/rt</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/xsmall.png?1343496195</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/original.png?1343496195</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/xxlarge.png?1343496195</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/xlarge.png?1343496195</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/large.png?1343496195</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/medium.png?1343496195</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/small.png?1343496195</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/xsmall.png?1343496195</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/434/608c52894a47a2e6e35b9c555500b1e8/xxsmall.png?1343496195</AvatarUrl>
<Sponsor>RT - Request Tracker</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 10:04:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38205" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38205">
<Title>November GSA Senate Meeting</Title>
<Tagline>Relevant Information for LLC Students</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>Please see below for information from the November GSA Senate meeting. <br>
    <br>
    </span><span>Sean Astrakhan, Barbara Church, Jesse Fox, Romy Hübler, Dan Miller, Afsoon Saadin,
    and </span>Stephanie Ward <span>are
    attending the National Association of Graduate and Professional Students
    (NAGPS) National Conference in </span>Kalamazoo, Michigan this weekend. All
    UMBC graduate students are <a href="http://nagps.org/" rel="nofollow external" class="bo">NAPGS</a> members and
    should <strong>take advantage of membership
    benefits</strong>. </p>
    <p><span>The November <strong>GSA Social Hour </strong>will be in
    Flat Tuesdays on <strong><span><span>November 21st</span></span> </strong>from<strong> <span><span>6:00 to 8:00pm</span></span></strong>. </span></p>
    <p><span>The second <strong>GSA IMDA Gallery </strong>is open. Please stop </span><span>by
    the GSA Office to view the beautiful artwork of </span><span>fellow graduate students. </span></p>
    <p><span>The GSA Senate <strong>approved </strong>the </span><strong><span><a href="https://www.facebook.com/GradsHaveDebt2" rel="nofollow external" class="bo">#GradsHaveDebt2 Resolution</a></span></strong><span>. </span></p>
    <p><span>The<strong>
    Bangladesh Graduate Student Organization</strong> has been <strong>approved</strong> by the GSA Senate. </span></p>
    <p>If you should have any concerns that you would like to bring before the GSA
    Senate, feel free to send an email to Romy at <a href="mailto:rjones12@umbc.edu">rjones12@umbc.edu</a>.  </p>
    </div>
]]>
</Body>
<Summary>Please see below for information from the November GSA Senate meeting.     Sean Astrakhan, Barbara Church, Jesse Fox, Romy Hübler, Dan Miller, Afsoon Saadin, and Stephanie Ward are attending the...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38205/guest@my.umbc.edu/ef48e7f28902814e22d94dc03b11df8c/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 09:09:14 -0500</PostedAt>
<EditAt>Mon, 11 Nov 2013 09:09:43 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="109942" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109942">
<Title>Faculty and Alumni of Umbilicus Perform at The Parlor</Title>
<Body>
<![CDATA[
    <div class="html-content">The percussion quartet Umbilicus, featuring Tom Goldstein, music, Shelly Purdy ’10, Will Redman ’98, and Rob Wolk ’11, performs Friday, November 15 at 8 p.m. at The Parlor, in a program including a set with new Department of Music faculty member, Patrick Crossland, trombone. Umbilicus’ set will include work by Anna Rubin, music. The Parlor 800 St. Paul Street Baltimore, MD Umbilicus was founded in 2012 in reaction to the generic contemporary percussion quartet, with the intention of promoting and performing a more experimental repertoire, much if it composed by its members. The suggested donation for this event is $5-$7.</div>
]]>
</Body>
<Summary>The percussion quartet Umbilicus, featuring Tom Goldstein, music, Shelly Purdy ’10, Will Redman ’98, and Rob Wolk ’11, performs Friday, November 15 at 8 p.m. at The Parlor, in a program including...</Summary>
<Website>https://news.umbc.edu/faculty-and-alumni-of-umbilicus-perform-at-the-parlor/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109942/guest@my.umbc.edu/a75dcd26a5c5c771d15344d5617f9420/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>engage</Tag>
<Tag>music</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 09:00:36 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38204" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38204">
<Title>An E-Commerce Study: Guidelines For Better Navigation And Categories</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>Product findability is key to any e-commerce business — after all, if customers can’t find a product, they can’t buy it. Therefore, at Baymard Institute, we invested eight months conducting a large-scale usability research study on the product-finding experience. We set out to explore how users navigate, find and select products on e-commerce websites, using the home page and category navigation.</p>
    <p>The one-on-one usability testing was conducted following the “think aloud” protocol, and we tested the following websites: Amazon, Best Buy, Blue Nile, Chemist Direct, Drugstore.com, eBags, GILT, GoOutdoors, H&amp;M, IKEA, Macy’s, Newegg, Pixmania, Pottery Barn, REI, Tesco, Toys’R’Us, The Entertainer, and Zappos. The pages and design elements that we tested include the home page, category navigation, subcategories, and product lists.</p>
    <p>Throughout the test sessions, the subjects would repeatedly abandon websites because they were unable to find the products they were looking for. Indeed, <strong>the subjects encountered over 900 usability-related problems</strong>, despite the websites having been built for multi-million dollars. All of these usability issues have been distilled into 79 concise guidelines in a report titled “Homepage &amp; Category Usability.” In this article, we’ll go over seven of the guidelines.</p>
    <h3>1. Don’t Make Parent Categories Shallow. (Also, Have Parent Categories.)</h3>
    <p><strong>Issue observed:</strong> When the hierarchy of categories is just labels and headers, it breaks the expectations of users and forces them into narrower sections than they desire, preventing explorative product browsing.</p>
    <p>Grouping subcategory options in drop-down menus and other areas is a vital part of making them both manageable and scannable; and most websites have done so. Surprisingly, though, on many of the websites tested, the top level of the drop-down categories was only text labels, not actual clickable elements. This conflicted with the expectations of the majority of the test subjects, who anticipated that the headers would be clickable.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-rei.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-rei-500px.png" width="500" height="220" style="max-width: 100%; height: auto;"></a><br><em>The Pottery Barn website (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-rei.png" rel="nofollow external" class="bo">larger view</a>).</em></p>
    <p>“I’d think that you can click all of it,” said a subject of Pottery Barn’s website (above left) when looking at the drop-down menu, “and that the black items will take me to a general page with all ‘Living room’ items.” Alas, upon hovering over the black heading, the mouse cursor changed to a text-selector rather than a pointing hand, and the subject concluded that it wasn’t clickable after all. The same type of shallow parent headings was found on REI’s website (above right).</p>
    <p>Most subjects expected that these headings would be clickable and often tried clicking them, despite the cursor indicating unclickability. The subjects wanted to keep a fairly broad scope of products, in the hope of landing on a page that displays a curated set of subcategories that would assist them in selecting a more defined scope (as opposed to a page listing products). <strong>Making parent categories a part of the product hierarchy</strong> (and not just be shallow text labels) is critical in supporting explorative product browsing, so that users who haven’t fully decided what they want or who are looking for inspiration on what to purchase can dip their toes in broader categories before diving into narrowly defined ones.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-amazon.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-amazon-500px.png" width="500" height="195" style="max-width: 100%; height: auto;"></a><br><em>Pixmania.com (left) and Amazon.com (right). (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-amazon.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>On Pixmania’s website (above left), a subject tried to select the generic “Digital Cameras” category, instead of specific camera types. He didn’t want to specify a camera type subcategory yet because he was still unsure about the exact differences and hadn’t decided on his particular needs. On Amazon (above right), another subject hovered over “Shop by Department” and tried to click ”Movies, Music &amp; Games,” which is orange when hovered over (Amazon’s hover style for links in the drop-down menu is orange and underlined), but nothing happened. She tried again before realizing that she had to choose one of the subcategories on the left.</p>
    <p>On websites in which headings are actually selectable parent categories (i.e. part of the website’s taxonomy), the subjects often ended up relying on them for an initial overview of an entire category, and from there made informed decisions about which subcategories to select.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gooutdoors-toysrus.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gooutdoors-toysrus-500px.png" width="500" height="156" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gooutdoors-toysrus.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>This critical guideline isn’t limited to drop-down menus, but applies to any representation of a hierarchy of categories. Examples would be the categories displayed in the sidebar or in the site map of a product catalog, as well as permanently visible main navigation bar options (i.e. very top-level categories). In all of these cases, a parent category should exist and be selectable, as opposed to being a shallow text label.</p>
    <h3>2. Put The Same Subcategory Within Multiple Main Categories When Necessary.</h3>
    <p><strong>Issue observed:</strong> When a subcategory could logically appear in multiple parent categories but appears only in one, users are often led astray.</p>
    <p>Depending on your product catalog, you might end up with subcategories that users would expect to find in multiple parent categories. For example, users might look for a coffee table in both the “Living Room” and “Tables” sections, as well as in the “Accessories” subcategory of “Sofas.”</p>
    <p>While the ideal solution is to craft a completely unambiguous set of top-level categories, this is not always realistic, and sometimes popular demand requires a fuzzy category to be introduced in the top-level categories. Therefore, to <strong>avoid the severe usability problem of users not being able find a subcategory</strong> where they expect (which often lead subjects to conclude that the store simply doesn’t carry the item), consider putting the subcategory in multiple parent categories.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/ecommerce-homepage-and-category-usability-01.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/ecommerce-homepage-and-category-usability-500px.jpg" width="500" height="298" style="max-width: 100%; height: auto;"></a><br><em>BestBuy.com (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/ecommerce-homepage-and-category-usability-01.jpg" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>One subject was unsure whether she would find computer adapters in “Office” or “Computers &amp; Tablets,” because the former describes a usage context, while the latter describes the type of product. Based on the subcategory options, she found the latter to be the correct one. However, in “Computers &amp; Tablets” (above right), she was in doubt about whether to look in “Batteries &amp; Power” or in the generic “Accessories.” Luckily, both led her to adapters. Also, notice how Best Buy has an “Ink &amp; Toner” category within “Computers &amp; Tablets,” as well as a “Printer Ink &amp; Toner” category within “Office,” allowing users to find the category in any of the potentially matching parent categories.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bestbuy.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bestbuy-500px.png" width="500" height="140" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bestbuy.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>Consider the “Office” category in the Best Buy example above. All of its subcategories could be in other top-level categories, yet the “Office” section is presumably still needed to support the large portion of Best Buy’s customers who shop with a “home versus work” mindset. In these instances, featuring very important subcategories within multiple parent sections would be relevant (assuming that they semantically fit them equally well) because users will look in the one that best fits their context.</p>
    <p>In terms of implementation, there are <strong>two main approaches to featuring the same subcategory in multiple parent categories</strong>. Our tests showed no conclusive evidence for one method over another. Each has its advantages and disadvantages:</p>
    <ul>
    <li>You could put the subcategory in one place in the website’s taxonomy, and then simply link to that destination in the other parent categories (for example, in the drop-down menu). The user would then jump scope to the “real” category, regardless of where they access it from. This could cause confusion if the user knows they have clicked a link in a menu named “Office” but then landed in the “Electronics” section (as indicated by the breadcrumbs).</li>
    <li>Alternatively, you could duplicate the categories so that each is a unique entry in the website’s hierarchy, with proper breadcrumb paths, etc. The downside here is technical complexity. Products must be tagged consistently across multiple duplicated subcategories; the search engine’s auto-suggestions must not suggest any one category more than once in a single search; and so on. Furthermore, implementing this requires canonical pages to be set up in order to avoid SEO penalties for the duplicate pages.</li>
    </ul>
    <h3>3. Consider Having A “What’s New” Category Or Filter.</h3>
    <p><strong>Issue observed:</strong> Some users want to see what’s new in your store — say, to be inspired or when buying for a friend — without having to plow through previously browsed products.</p>
    <p>“H&amp;M is one of the websites that I check from time to time,” a test subject explained, “so I might pick ‘New Arrivals,’ like this, and see what new stuff they have.” Many subjects who had experience with a website or brand that we tested would look for a “What’s New” category. This was especially true if they cared deeply about the products and brand and already had <strong>a good idea of the product catalog</strong> and, thus, wanted to check out what had arrived since their previous visit.</p>
    <p>Clearly, a “What’s New” filter-based category is a great way to support return visitors, so that they can easily identify what new products have arrived since their last visit. But there are other use cases for “What’s New.”</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/HM-whats-new.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/HM-whats-new-500px.png" width="500" height="411" alt="“New Arrivals” is particularly meaningful in seasonal industries, where the newness factor could be a major part of the purchasing decision." style="max-width: 100%; height: auto;"></a><br>
    <em>“New Arrivals” is particularly meaningful in seasonal industries, where the newness factor could be a major part of the purchasing decision. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/HM-whats-new.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>In seasonal industries, such as clothing and groceries, “What’s New” helps users to see what’s currently fresh and in season. “What’s New” shouldn’t be taken too literally. For example, fresh figs aren’t exactly new because they are in stores every year, but they are new to stores around summertime, and most users would expect to find them in a “What’s New” type of section, regardless of whether they are technically new (for example, the SKU might be the same). Indeed, the category or filter shouldn’t necessarily be called “What’s New”; depending on the product type, a label such as “New Arrivals” or “In Season” might be more appropriate.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/theentertainer-whats-new.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/theentertainer-whats-new-500px.png" width="500" height="400" alt="Unsure of what to buy for an eight-year-old nephew, a subject decided to open the “New” category because “kids often want the latest thing.”" style="max-width: 100%; height: auto;"></a><br>
    <em>Unsure of what to buy for an eight-year-old nephew, a subject decided to open the “New” category because “kids often want the latest thing.” (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/theentertainer-whats-new.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>Some gift-buyers want to see new releases to buy something interesting and novel. The recentness of a product also lowers the chance that the gift recipient already owns the product, which is particularly important when the buyer doesn’t know the recipient well.</p>
    <p>Making “What’s New” a filter, rather than a separate site-wide category, is often a good idea, so that users can see new items within sections. This works well in several cases: for repeat visitors who want to check only the new items in a particular category; in seasonal industries where a user is interested only in what’s in season in a particular section, such as “Fruits”; and, last but not least, for gift-buyers who need to pick a section that’s relevant to the recipient before considering how to find the best item in that section.</p>
    <p>“What’s New” can be integrated as an option in the filtering tools or as part of the category navigation (even if it’s actually a filter that’s presented as a subcategory). During testing, the subjects responded well to seeing it in both the filtering tools and in the category navigation of websites in seasonal industries. But they can clutter up category navigation quickly if not implemented carefully (i.e. if the options are not progressively disclosed as categories are selected). In industries in which newness isn’t as important, a filtering option would probably suffice.</p>
    <h3>4. Suggest Both Alternative And Supplementary Products On Product Pages.</h3>
    <p><strong>Issue observed:</strong> Alternatives, substitutes, add-ons and accessories to the product that the user is currently viewing are unreasonably difficult to find without good upselling and cross-selling on the product page.</p>
    <p>Upselling and cross-selling is great for business. And, when implemented appropriately, they can be great for usability, too. Suggesting supplementary products is great for users who are looking for add-ons or accessories to the product they are viewing, while suggesting similar products is great for users who are searching for alternatives or substitutes.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bluenile-lack-of-upsell.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bluenile-lack-of-upsell-500px.png" width="500" height="329" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/bluenile-lack-of-upsell.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“It’s like when you look for movies online. If I liked this one, then I might also like these. That’s pretty smart,” a subject explained when stumbling upon the “Similar Diamonds to Consider” on the product page for Blue Nile shown above. Suggesting substitute products is an effective way to keep the user on product pages that don’t match their criteria.</p>
    <p>If the user arrives on a product page that turns out not to match their criteria, they will either give up and abandon or look for alternatives or substitutes. L<strong>uckily, most users are patient in the beginning</strong> and opt for the latter, but they will quickly grow tired if the only way to browse alternatives is to go back to the overview list of products.</p>
    <p>This is where suggesting similar products helps. By listing alternatives and substitutes directly on the product page, the user can go directly from one product to the next. This much richer display of information about the product keeps the user engaged on the page and close to the “Add to Cart” button and checkout process. <strong>Good suggestions of similar products also help the user </strong>find alternatives or substitutes across the website’s entire product catalog, not only easing the browsing experience but also enhancing product findability (and enabling cross-sectional navigation via breadcrumbs).</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gilt-lack-of-crosssell.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gilt-lack-of-crosssell-500px.png" width="500" height="237" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/gilt-lack-of-crosssell.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“Sometimes they have some looks or some ideas, or something,” a subject explained after scrolling to the end of the product page on Gilt shown above. While the “May We Suggest” suggestions are great, the subject had already found a dress (on the product page she was currently on) and wanted to complete her outfit with a pair of shoes to go with the dress. Unfortunately, Gilt offered only alternative products (i.e. other dresses) and not add-ons or accessories (shoes, jewelry, makeup, etc.).</p>
    <p>While suggestions for similar products are great, they often aren’t enough. <strong>Users will often want suggestions of add-ons and accessories</strong>, too. After deciding to purchase a product, some users will want to buy additional — supplementary — products along with it, to “complete the look” or “finish the package.” A user buying a camera is likely to want a case for it. Yet finding such supplementary products is often a hassle. Even if the website has a subcategory for accessories, the user would have to go back to the product list, select the subcategory and apply the right compatibility filters (which works only for category browsing, not search).</p>
    <p>With a list of add-ons and accessories directly on the product page, the user would easily be able to find products to supplement their purchase. Much like suggestions for similar products, suggestions for supplementary products ease the user’s browsing experience, enhance product findability, and — to a great extent — enable cross-sectional navigation. Not to mention its obvious business appeal.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-recommended-bags.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-recommended-bags-500px.png" width="500" height="390" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-recommended-bags.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“When they say ‘Recommended for you,’ I assume they will fit,” a subject explained, referring to the camera cases displayed after adding a Nikon Coolpix pocket camera to his cart on Tesco (above). It turned out that one of the two recommended cases didn’t fit the camera.</p>
    <p>When suggesting supplementary products, label them appropriately if compatibility is an issue in your industry. Many of the subjects assumed that any accessories suggested would be compatible with the product they were viewing or had just added to their cart. Only when the suggested products were explicitly labeled as being based on the behavior of other users (for example, “Other customers also bought”) did the subjects not assume them to be compatible. <strong>Be careful in labelling behavior-based suggestions</strong> for supplementary products as “recommended” if you can’t guarantee their compatibility with the product they are being suggested to complement.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-both-cross-and-up-sell.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-both-cross-and-up-sell-500px.png" width="500" height="366" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-both-cross-and-up-sell.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“Something which is similar that other customers visited or bought,” a subject mumbled to himself when glancing over the sidebar shown above. Tesco helps its users find both alternative and supplementary products by including lists of both “Others bought these alternatives” and “Customers who bought this also bought” in the sidebar of its product pages. (And unlike on its shopping-cart page, Tesco gets the labeling right here by clearly indicating that the lists are based on the behavior of other customers.)</p>
    <p>Given that users want suggestions for both similar and supplementary products, implementing both on product pages is recommended. The lists don’t have to be located near each other, although they could be, as long as they aren’t mixed. The subjects responded poorly when the criteria or theme of the product suggestions was not clear. Therefore, keep suggestions for similar products and supplementary products in distinct groups, but be sure to have both.</p>
    <p>While basing these suggestions on the behavior of other users can be effective, exercise care. Tesco’s suggestions for supplementary products consisted entirely of memory cards, even though many other relevant add-ons and accessories are obvious, such as cases, lenses and batteries. So, either manually curate the suggestions or have the system generate them based on a broad range of factors, so that a diverse set of complementary product types is shown.</p>
    <h3>5. List “Recently Viewed Items.”</h3>
    <p><strong>Issue observed:</strong> Refinding a previously visited product becomes needlessly complex when the user has to rely on the browser’s native “Back” button or has to renavigate the categories or reuse search.</p>
    <p>During testing, subjects often wanted to return to a previously visited item — sometimes to check whether certain features of the previous item were compatible with the new one, other times to compare two products before deciding on one to purchase, and still other times to return to a certain product scope from where they could use the breadcrumbs to climb back up the category hierarchy.</p>
    <p>Whatever the reason, the subjects simply wanted to refind a previously viewed product. Yet, on websites without a “Recently viewed items” feature, the only ways to do this were through repeated clicking of the browser’s “Back” button (an option that occurred only to some subjects) or by searching for it or plowing through the product categories once again.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-500px.png" width="500" height="181" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>When looking for a camera case on Pixmania (above), this subject realized that he needed the name of the camera he chose. He went back to the product page using the browser’s “Back” button, then reopened the drop-down menu, then opened the “Camera Cases” subcategory in a new tab. A list of “Recently viewed items” would have greatly simplified this process.</p>
    <p>A list of “Recently viewed items” typically consists of a row of products that the user has previously visited. It is a kind of history-based breadcrumb trail (except that it typically includes only products, not categories or other pages). The list tends to be located towards the bottom of the product page — sometimes even in the footer — but is sometimes given more prominence in a sidebar.</p>
    <p>However, the list should be available on all pages of the website (not just the product page), because returning to a previously visited item would be just as welcomed by users who find themselves lost on a category page. The footer has the benefit of being out of the way most of the time; and then when subjects wanted to change scope or refind an item, most scrolled to the bottom of the page, likely looking for cross-sectional navigational such as “Related Items,” and thus discovering the “Recently viewed items” list.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Tesco-recently-viewed.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Tesco-recently-viewed-500px.png" width="500" height="180" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Tesco-recently-viewed.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>On Tesco (above), refinding a previously visited product is made easy by the “Items you have recently viewed” list, which is integrated in the footer on all category and product pages. Compare how easy it was for this subject to check the camera’s dimensions with the previous Pixmania example.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Crate-Barrel-recently-viewed-items.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Crate-Barrel-recently-viewed-items-500px.png" width="500" height="280" style="max-width: 100%; height: auto;"></a><br>
    <em>Another location for the “Recently viewed items” list is the sidebar, as seen here on Crate &amp; Barrel. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/Crate-Barrel-recently-viewed-items.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>With this list readily available throughout the website, users are assured that refinding products will be easy, and they are more likely to explore other items because they know that returning to a favorite won’t be a hassle. Combined with breadcrumbs, <strong>users enjoy a powerful combination</strong> that facilitates both history-based cross-sectional navigation and section jumping. Show “Recently viewed items” to everyone, then, without requiring users to sign in; the list should be session-based, functioning much like a shopping cart.</p>
    <p>Because the list is automatically generated for users, a couple of privacy features are worth considering. While the vast majority of users will enjoy seeing “Recently viewed items,” a few will want to hide the items because they don’t want others to know or because they’re on a public computer. In such cases, consider two features: “Clear all” and “Disable list.”</p>
    <h3>6. Create Dedicated Pages That List Compatible Products.</h3>
    <p><strong>Issue observed:</strong> Users have a difficult time finding compatible products and verifying their compatibility when the website doesn’t explicitly state their compatibility or link to the corresponding products.</p>
    <p>Finding a spare adapter for your laptop or buying a camera and matching case might sound like trivial tasks, but during testing, it turned out to be extremely difficult for subjects, who had a completion rate of only 35%. This means that 65% had to give up or, worse, ended up purchasing a product that they believed was compatible but was, in fact, not.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-camera-compatibility.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-camera-compatibility-500px.png" width="500" height="180" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-camera-compatibility.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>The subject above opened the camera page in a new tab, but even with the camera’s dimensions close at hand, finding a matching case proved to be tiresome, as he still had to open the page for the camera case, go to the specifications, locate the dimensions, compare it to the camera’s, and repeat this for every single case. After a few attempts he gave up, like 65% of the subjects.</p>
    <p>Finding compatibility-dependent accessories can be difficult, which is why you should always suggest both alternative and supplementary products on a product page (see guideline 5), as well as list “Recently viewed items” (guideline 6). However, if the majority of accessories in your industry are strictly compatible with certain other products (regardless of whether you sell those other products), then consider also offering whole pages listing compatible products. Technology industries are ideal for this (due to the technical dependency between products), whereas it would be overkill for a clothing store (all clothes “function” together — the only “compatibility” factor is taste).</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-compatibility.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-compatibility-500px.png" alt="" width="500" height="411" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-compatibility.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“I’ll pick Nikon now — originally, I didn’t necessarily want one from Nikon — but I’ll do it now hoping to find an original camera bag so I know it will fit, because I’m not really keen on going back to find my camera dimensions and then compare to the bags,” a test subject explained. “So, unless it’s insanely expensive, I’ll probably take an original.” Subjects often gave up finding a compatible case that they liked and simply tried to find anything that would fit their camera. Using brand filters was often a part of that strategy, although it led some novice photographers to purchase incompatible cases, because they assumed that most Nikon cases would fit most Nikon cameras.</p>
    <p>When dedicating whole pages to compatible products, then the page for, say, the “Nikon D7000 camera” would list all compatible accessories, such as batteries, cases and lenses. Going a step further, the page could even filter by product type, so that users can view “compatible ‘camera cases’ for ‘Nikon D7000’.” This enables users to navigate the product catalog vertically and to find (typically high-profit) accessories, instilling confidence in the accessories’ compatibility.</p>
    <p><strong>Determining compatibility across a catalog is a major undertaking</strong>, but with intelligent queries for each compatibility-dependent category, a lot of the work can be automated. The benefits of determining such compatibility are many. Besides the already mentioned ability to browse vertically across categories, it enables you to create powerful filters. Imagine one filter in the “Laptop Adapters &amp; Chargers” category that allows the user to enter their computer’s model and see compatible chargers. Furthermore, it is also great for search engine optimization, because these compatibility lists can be presented as permanent pages, giving you several highly targeted and unique landing pages for each product, such as “Lenses for Nikon D7000,” “Laptop Chargers &amp; Adapters for MacBook Pro” and “Covers for Kindle Paperwhite.”</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-cross-sell-no-category-link.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-cross-sell-no-category-link-500px.png" width="500" height="316" style="max-width: 100%; height: auto;"></a><br><em>When seeing these camera bags being cross-sold in their shopping cart, the subject above was disappointed by their looks (all black nylon). (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/pixmania-cross-sell-no-category-link.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>Had Pixmania established compatibility across its catalog, it could have linked to a list of compatible accessories — “See all 8 compatible cases for Canon PowerShot A2300” — at the end of this cross-selling section, providing a direct path to a complete overview of relevant cases.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-poor-cross-sell-suggestions.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-poor-cross-sell-suggestions-500px.png" alt="Establishing compatibility across a catalog helps you to avoid plainly wrong matches." width="500" height="400" style="max-width: 100%; height: auto;"></a><br><em>Establishing compatibility across a catalog helps you to avoid plainly wrong matches. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/tesco-poor-cross-sell-suggestions.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>In Tesco’s shopping cart above, the subject tried to find a matching case for the camera she had just chosen, but she completely lost faith in the website upon seeing few related accessories and a lot of irrelevant recommendations, including a saxophone!</p>
    <p>Compatibility-based pages should be cross-linked with the original product page, as well as with any “Compatible With” lists on the product pages of compatible items. Such pages could also appear in a user’s shopping cart and be included in the filters of all relevant accessory categories across the website.</p>
    <p>Besides being great for cross-selling and SEO, dedicated pages of compatible products can be mined for data to create filters and to improve cross-selling recommendations. They would enable you to avoid suggesting incompatible products, which is critical because most users will assume that any product being suggested fits.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/newegg-lack-of-compatibility-lists.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/newegg-lack-of-compatibility-lists-500px.png" width="500" height="296" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/newegg-lack-of-compatibility-lists.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“It fits ‘X60,’ but that’s not mine. I have an X61,” a subject said, referring to the top result above. He continued, “It fits all in the X60 series. Does that mean my X61 as well? I would go to Lenovo’s website and find out.” Confusion about which models are in a “series” was common, because a series’ name can be confused with a particular model’s name.</p>
    <p>Just showing a list of compatible products for each model doesn’t always cut it because some models are organized into series as well. In the Newegg example just above, the “Lenovo ThinkPad X61s” model is part of the “Lenovo X60 series.” This hierarchy should be reflected in the dedicated pages of compatible products as well, because some test subjects mixed up a series’ name with a model’s name. Pages for compatible products in a series should link to all models in that series to clear up any doubts the user might have.</p>
    <p>Lastly, <strong>dedicated pages of compatible products can still be meaningful</strong> even if the website doesn’t carry all of the products. For example, an electronics store that doesn’t sell Sony digital cameras could still have pages of compatible products for Sony cameras to help customers find accessories that it does sell. The same goes for websites that don’t even sell products from a given industry; for example, a website that sells apparels or bags but not laptops or electronics might still want to list compatible products so that users can browse only the bags that fit their particular laptop.</p>
    <h3>7. Always Link Contextual Images Directly To The Products Shown.</h3>
    <p><strong>Issue observed:</strong> Users quickly grow frustrated when they spot a product in a contextual image but can’t navigate to it.</p>
    <p>“I want this. What do I do?… I want this one,” one subject said, laughing out of despair while pointing and clicking at a coffee table shown in a contextual image on IKEA. While inspirational images can raise the aesthetic appeal of an e-commerce website and serve as an important vertical style-based navigation path, not directly linking to the products depicted in contextual images will frustrate users to no end.</p>
    <p>During testing, the subjects were dumbfounded that a website didn’t simply link directly to all products depicted and that they had to hunt them down to learn more or to purchase them. This lowered their perception of the website, and some took it as a sign that the owners clearly hadn’t used their own website.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-links-all-depicted-categories.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-links-all-depicted-categories-500px.png" width="500" height="399" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-links-all-depicted-categories.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>“I don’t know how I found this cushions category. I wonder why there wasn’t a cushions category along with all the sofa options up there. But then I saw this image of a cushion down the page and thought that maybe I’m on the right track.” One subject said this while looking for cushions in the sofa category on IKEA’s website. As he scrolled down the “Sofas” subcategory page, he spotted an image containing a cushion, and while the image was actually cross-selling sofa covers, the “Cushions” category was linked to it as well.</p>
    <p><strong>Images tend to draw a lot of attention</strong>, and when users get stuck in first attempting to find a product, they tend to scan the page very narrowly for anything that looks like a path to the product they want. Therefore, contextual images should always link to the products depicted, even if the image is meant merely as inspiration for one of the products being shown. Users will still notice the other products in the image, especially if they are actively scanning for one of those product types. Even if the purpose of the image isn’t to promote that particular product, users will become frustrated if they can see the product but not access its page.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-suggested-products-not-linked.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-suggested-products-not-linked-500px.png" alt="IKEA-suggested-products-not-linked" width="500" height="331" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/IKEA-suggested-products-not-linked.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>Above, a subject saw a table that he wanted in the thematic “Seating Solutions” image, so he clicked it, but nothing happened. He then tried the “Save to list” button, assuming it would save all of the products shown and that he could then simply remove the other products. But that didn’t happen either. “Nooo… Arrgghhh, it only added the sofa. I would like to get the sofa table,” he said, hovering over and right-clicking the table in the image. He laughed in despair as he continued, “I want this. What do I do? I want this one [pointing at the table]. I expected it would save all of them when I used the button, but it only saved the sofa.” After searching for the table, the subject ended up abandoning the website.</p>
    <p>If an item is not being sold, ideally it shouldn’t be depicted at all. In practice, this is easier said than done because contextual images sometimes contain products that were available when the photograph was taken but that now are not (or are not in all distribution channels — for example, a store might sell some products offline only, or an international website might ship certain products to certain regions). Discarding or reshooting an entire scene of multiple products is likely unfeasible if just one or two of the products are no longer available.</p>
    <p>In such cases, <strong>replace the product link with a description</strong>, rather than just remove it entirely (as seen in the IKEA example above). The description could be as simple as “Discontinued,” “Available only in store” or “Not available in US store” — the vital part is to indicate that the user may not purchase the item. If the item has not been discontinued but is simply unavailable for purchase in a particular channel or region (as with IKEA above), then the description can point very persistent customers in the right direction. Better yet, if similar products are available, consider linking to them or to their categories.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-not-linking-to-products-depicted.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-not-linking-to-products-depicted-500px.png" alt="Exploring how users navigate." width="500" height="217" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/potterybarn-not-linking-to-products-depicted.png" rel="nofollow external" class="bo">Larger view</a></em></p>
    <p>In the image above on the left, one subject found the sofa in the header image interesting and clicked it to investigate further, only to be confused when presented with a list of products but not that particular sofa. In the image on the right, another subject was on the product page for a sofa. Upon inspecting the sofa images, she found that she very much liked the coffee table as well and wanted to know more about it. She looked around for links, but there weren’t any, not even in the cross-selling section further down the page.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/crate-barrel-links-to-all-products-depicted.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/11/crate-barrel-links-to-all-products-depicted-500px.png" alt="Another way to solve this challenge is to mark up contextual images with direct links to the products being depicted, as seen above on Crate &amp; Barrel, where clicking the “+” icon will open a quick preview of the pinned product." width="500" height="314" style="max-width: 100%; height: auto;"></a><br><em>Another way to solve this challenge is to mark up contextual images with direct links to the products being depicted, as seen above on Crate &amp; Barrel, where clicking the “+” icon will open a quick preview of the pinned product. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/11/crate-barrel-links-to-all-products-depicted.png" rel="nofollow external" class="bo">larger view</a>)</em></p>
    <p>Direct links are needed not only for contextual images. Header images and even some images on product pages would benefit from having direct links to the items being shown. For images on product pages, any products that are clearly depicted could be linked to either right below the image, by having a dedicated “get the look” cross-selling list, or at the very least in a generic cross-selling section on the product page. One could even experiment with tagging the image so that users can actually click right on the products they are interested in.</p>
    <h3>If They Can’t Find It, They Can’t Buy It.</h3>
    <p>In a time when more and more customers are accessing e-commerce websites through search engines and social media links that send them deep into a website’s hierarchy, enabling users to infer their current position in the hierarchy, to go to the generic parent category and to find related products is critical. Even customers who use on-site search will depend on the website’s taxonomy of categories to infer the available range of products.</p>
    <p>No matter how much time you spend on the aesthetics, the product images and the optimization of landing pages, the customer’s overall experience will falter if the foundational e-commerce elements, such as the taxonomy of categories, aren’t solid.</p>
    <p><strong>Designing user-friendly category-based navigation is no easy task</strong>. It requires a solid information architecture, systematic labelling, a logical hierarchy, curated subcategory pages and a balanced home page design. Obviously, all of this can’t be covered in an article like this, but the seven guidelines we’ve looked at are low-hanging fruit; by following them, you can quickly improve the category navigation on a typical e-commerce website:</p>
    <ol>
    <li>Don’t make parent categories shallow.</li>
    <li>Put the same subcategory within multiple main categories when necessary.</li>
    <li>Consider having a “What’s New” category or filter.</li>
    <li>Suggest both alternative and supplementary products on product pages.</li>
    <li>List “Recently Viewed Items.”</li>
    <li>Create dedicated pages that list compatible products.</li>
    <li>Always link contextual images directly to the products shown.</li>
    </ol>
    <p>One last note. During testing, it became clear that loosely executed categories can have more devastating consequences than “just” immediate abandonment of the website — it could permanently damage the brand. When the subjects couldn’t find a particular product type, they would often conclude that the website didn’t carry such items. Such fundamental misunderstanding leads not only to an immediate loss of a sale, but to future losses because customers won’t visit a store that they assume does not carry the type of product they are looking for.</p>
    <p><em>(al, il)</em></p>
    <p><em>Learn more guidelines about category and navigation usability in the (paid) report “<a href="http://baymard.com/homepage-and-category-usability" title="Homepage &amp; Category Usability Report 2013" rel="nofollow external" class="bo">Homepage &amp; Category Usability</a>,” by the author of this article.</em></p>
    <hr>
    <p><small>© Christian Holst for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Product findability is key to any e-commerce business — after all, if customers can’t find a product, they can’t buy it. Therefore, at Baymard Institute, we invested eight months...</Summary>
<Website>http://www.smashingmagazine.com/2013/11/11/an-e-commerce-study-guidelines-for-better-navigation-and-categories/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38204/guest@my.umbc.edu/91ee807990c5872ed651bd24b3ffb762/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>ux-design</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 08:31:32 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38200" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38200">
<Title>DealBook Special Section: Separating the Market-Moving Tweets From the Chaff</Title>
<Body>
<![CDATA[
    <div class="html-content">Wall Street has recognized the value of Twitter as an investing tool, but a question remains about how best to sift half a billion daily messages to gain an edge on the market.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F11%2F11%2Fseparating-the-market-moving-tweets-from-the-chaff%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Special+Section%3A+Separating+the+Market-Moving+Tweets+From+the+Chaff" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F11%2F11%2Fseparating-the-market-moving-tweets-from-the-chaff%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Special+Section%3A+Separating+the+Market-Moving+Tweets+From+the+Chaff" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F11%2F11%2Fseparating-the-market-moving-tweets-from-the-chaff%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Special+Section%3A+Separating+the+Market-Moving+Tweets+From+the+Chaff" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F11%2F11%2Fseparating-the-market-moving-tweets-from-the-chaff%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Special+Section%3A+Separating+the+Market-Moving+Tweets+From+the+Chaff" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F11%2F11%2Fseparating-the-market-moving-tweets-from-the-chaff%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Special+Section%3A+Separating+the+Market-Moving+Tweets+From+the+Chaff" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/sc/22/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180264017864/u/0/f/640387/c/34625/s/338c39e3/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Wall Street has recognized the value of Twitter as an investing tool, but a question remains about how best to sift half a billion daily messages to gain an edge on the market.      </Summary>
<Website>http://dealbook.nytimes.com/2013/11/11/separating-the-market-moving-tweets-from-the-chaff/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38200/guest@my.umbc.edu/870edc110423eb3a0a0956867811e142/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>data-mining-and-database-marketing</Tag>
<Tag>financial-services</Tag>
<Tag>new</Tag>
<Tag>new-york-stock-exchange</Tag>
<Tag>social-media</Tag>
<Tag>special-section-fall-2013</Tag>
<Tag>stocks-and-bonds</Tag>
<Tag>technology</Tag>
<Tag>top-headline-1</Tag>
<Tag>twitter</Tag>
<Tag>twitter-twtr-nyse</Tag>
<Tag>wall-street</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 07:29:13 -0500</PostedAt>
<EditAt>Mon, 11 Nov 2013 09:17:27 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38199" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38199">
<Title>Glyphicons with Twitter Bootstrap 3</Title>
<Body>
<![CDATA[
    <div class="html-content">In this tutorial we will discuss how to use and customize Glyphicons with Twitter Bootstrap 3.</div>
]]>
</Body>
<Summary>In this tutorial we will discuss how to use and customize Glyphicons with Twitter Bootstrap 3.</Summary>
<Website>http://feedproxy.google.com/~r/w3resource/~3/rHg26iW6Wpo/glyphicons.php</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38199/guest@my.umbc.edu/1dc088dc808828524052b00f232eab4c/api/pixel</TrackingUrl>
<Tag>backend</Tag>
<Tag>css</Tag>
<Tag>frontend</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>javascript</Tag>
<Tag>nosql</Tag>
<Tag>sql</Tag>
<Tag>xhtml</Tag>
<Tag>xml</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 06:46:28 -0500</PostedAt>
<EditAt>Thu, 15 May 2014 09:16:23 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38212" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38212">
<Title>China&#8217;s One-Day Shopping Spree Sets Record in Online Sales</Title>
<Body>
<![CDATA[
    <div class="html-content">Chinese consumers were taking to the Internet in record numbers for an annual 24-hour online sale that has ballooned into the world’s biggest e-commerce event.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F12%2Fbusiness%2Finternational%2Fonline-shopping-marathon-zooms-off-the-blocks-in-china.html%3Fpartner%3Drss%26emc%3Drss&amp;t=China%E2%80%99s+One-Day+Shopping+Spree+Sets+Record+in+Online+Sales" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F12%2Fbusiness%2Finternational%2Fonline-shopping-marathon-zooms-off-the-blocks-in-china.html%3Fpartner%3Drss%26emc%3Drss&amp;t=China%E2%80%99s+One-Day+Shopping+Spree+Sets+Record+in+Online+Sales" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F12%2Fbusiness%2Finternational%2Fonline-shopping-marathon-zooms-off-the-blocks-in-china.html%3Fpartner%3Drss%26emc%3Drss&amp;t=China%E2%80%99s+One-Day+Shopping+Spree+Sets+Record+in+Online+Sales" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F12%2Fbusiness%2Finternational%2Fonline-shopping-marathon-zooms-off-the-blocks-in-china.html%3Fpartner%3Drss%26emc%3Drss&amp;t=China%E2%80%99s+One-Day+Shopping+Spree+Sets+Record+in+Online+Sales" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F12%2Fbusiness%2Finternational%2Fonline-shopping-marathon-zooms-off-the-blocks-in-china.html%3Fpartner%3Drss%26emc%3Drss&amp;t=China%E2%80%99s+One-Day+Shopping+Spree+Sets+Record+in+Online+Sales" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180263967236/u/0/f/640387/c/34625/s/338d59c9/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Chinese consumers were taking to the Internet in record numbers for an annual 24-hour online sale that has ballooned into the world’s biggest e-commerce event.      </Summary>
<Website>http://www.nytimes.com/2013/11/12/business/international/online-shopping-marathon-zooms-off-the-blocks-in-china.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38212/guest@my.umbc.edu/40d2a54f06997eec1c56eadcbb22d5c8/api/pixel</TrackingUrl>
<Tag>alibaba-com</Tag>
<Tag>china</Tag>
<Tag>e-commerce</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 05:28:51 -0500</PostedAt>
<EditAt>Mon, 11 Nov 2013 16:24:00 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="122975" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122975">
<Title>UMBC: Voices Carry</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h2>Voices Carry</h2>
    <h3>Gus Russo �72 Traces the Lesser-Known Tales of the Kennedy Assassination</h3>
    <p>Ask <strong>Gus Russo�72, political science,</strong> where he was on November 22, 1963 and he recalls it instantly. He was a student at Mount Saint Joseph High School, plunged with his fellow Roman Catholic school classmates into a deep communal grief over the assassination of John F. Kennedy � who was the first Roman Catholic president of the United States.</p>
    <p>�One of the guys sitting next to me in that classroom was the jock of all jocks,� Russo recalls. �A five-letter guy. He was the star of every team he was on…And the most macho guy of the macho guys was crying more than anyone else.�</p>
    <p>But for the past year, Russo has been asking other people to recount their memories of that tragic day for <em>Where Were You?: America Remembers the JFK Assassination</em> � a new NBC documentary hosted by Tom Brokaw. The interviews for that NBC special (with a foreword by Brokaw) have also been compiled and edited by Russo and Harry Moses into a book with the same title published by Lyons Press.</p>
    <p>Russo says that many of the people that he and Moses interviewed for the project � including prominent politicians and celebrities � had the same reaction 50 years later that his high school classmates had on that dark day in American history.</p>
    <p>�I can�t tell you how many people on set just lost it,� observes Russo. �Tears came to their eyes. Jane Fonda did on the very first question. [Secretary of State] John Kerry welled up. [Former U.S. President Bill] Clinton choked up. A lot of people just had to pause and take a breath.�</p>
    <p>Russo is an accomplished investigative journalist and author, with six books to his credit � including books on the Mafia and a memoir titled <em>Boomer Days</em> (2011) that recounts parts of his time as student at UMBC.</p>
    <p>Also among Russo�s publications are two books on the Kennedys and Cuba: <em>Live By the Sword: The Secret War Against Castro</em> (1998) and <em>Brothers In Arms: the Kennedys, the Castros and the Politics of Murder</em> (2008). His expertise on the assassination has led to his involvement not only in the new NBC documentary, but in numerous other works about Kennedy�s murder including ABC�s 40th anniversary documentary and (as a technical adviser) on Oliver Stone�s 1991 film <em>JFK</em>.</p>
    <p>Though the NBC documentary boasts a lot of star power (actor Tom Hanks and talk show host Jay Leno also make appearances), Russo says that it is the stories of lesser-known people whose lives were transformed by the events that November day in Dallas that interest him the most.</p>
    <p>Indeed, a key impetus for creation of the book was Russo�s desire to give the stories of figures close to the drama such as Marie Tippet (widow of the Dallas police officer J.D. Tippet, who was murdered by assassin Lee Harvey Oswald as he fled the scene) and Buell Frazier (a friend of Oswald who drove the assassin to the Texas Book Depository on the day of the murder) greater prominence in the retelling of the story on this anniversary.</p>
    <p>�This year, Frazier started to open up,� observes Russo, �but for about 25 or 30 years he didn�t talk to anybody. He was traumatized. Marie Tippet had never been on national television.�</p>
    <p>He adds that the stories of these often-neglected eyewitnesses to history help build the case for his view that Oswald was solely responsible for Kennedy�s murder. �If you piece together what is known inarguably about Oswald�s chronology,� he says, �you gain a picture of a man who was capable of doing awful things.�</p>
    <p>Russo started investigating the assassination decades ago from a viewpoint that there may have been a conspiracy against the president. �But I wasn�t going to turn my brain off to new evidence�. I think it�s a sign of intelligence when you can change your mind. Some people think that�s flip-flopping.</p>
    <p>�I was friends with all the [conspiracy writers],� Russo continues, �but when I saw the evidence and said, �It is what is. Oswald did it,� I became the black sheep and persona non grata with these people. They don�t want to incorporate new evidence. They�re stuck in 1963.�</p>
    <p>While five decades separate us from November 22, 1963, Russo concludes that the recollections of those who were touched by those events �are best road to understand the event in human terms, especially if you�re trying to relate it to a generation who didn�t live through it.�</p>
    <p>(Where Were You?: America Remembers the JFK Assassination <em>was published on November 9, 2013 by Lyons Press. The NBC documentary for which its interviews were gathered will air on November 22, 2013 at 9 p.m. EST.)</em></p>
    <p>(11/11/2013)</p>
    </div>
]]>
</Body>
<Summary>Voices Carry   Gus Russo �72 Traces the Lesser-Known Tales of the Kennedy Assassination   Ask Gus Russo�72, political science, where he was on November 22, 1963 and he recalls it instantly. He was...</Summary>
<Website>https://umbc.edu/stories/umbc-voices-carry/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122975/guest@my.umbc.edu/2603923b567e12fd563057bc00a25ea9/api/pixel</TrackingUrl>
<Tag>window-stories</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 05:00:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38198" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38198">
<Title>What&#8217;s new for designers, November 2013</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="what's new for designers november 2013" src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/thumb.jpg" style="max-width: 100%; height: auto;">The November edition of what’s new for web designers and developers includes new web apps, graphic design tools, coding resources, project management tools, icons, mapping resources, and some really great new fonts.</p> <p>Many of the resources below are free or very low cost, and are sure to be useful to a lot of designers and developers out there.</p> <p>As always, if we’ve missed something you think should have been included, please let us know in the comments. And if you have an app or other resource you’d like to see included next month, tweet it to <a href="http://twitter.com/cameron_chapman" rel="nofollow external" class="bo">@cameron_chapman</a> for consideration.</p> <h1>Flaticon</h1> <p><a href="http://www.flaticon.com/" rel="nofollow external" class="bo">Flaticon</a> is a huge repository of downloadable free vector icons. They also offer a free plugin for using icons directly within Photoshop.</p> <p><a href="http://www.flaticon.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/flaticon.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>GlyphSearch</h1> <p><a href="http://glyphsearch.com/" rel="nofollow external" class="bo">GlyphSearch</a> makes it simple to search for icons from Glyphicons, Ionicons, and Font Awesome. You can also browse icons on the site.</p> <p><a href="http://glyphsearch.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/glyphsearch.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Content Snippets</h1> <p><a href="http://www.contentsnippets.com/" rel="nofollow external" class="bo">Content Snippets</a> collects specific snippets of written content from around the web, and puts them together in one place for you to get inspiration.</p> <p><a href="http://www.contentsnippets.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/snippets.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Layers CSS</h1> <p><a href="http://eiskis.net/layers/" rel="nofollow external" class="bo">Layers CSS</a> is a CSS framework that is lightweight and unobtrusive, and includes no dependencies. It doesn’t restrict the look and style of your design.</p> <p><a href="http://eiskis.net/layers/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/layerscss.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Free Vector Maps</h1> <p><a href="https://www.freevectormaps.com/" rel="nofollow external" class="bo">Free Vector Maps</a> gives you access to tons of vector maps of countries all over the world. They can be used for free under the Creative Commons Attribution License, or can be purchased for unlimited usage.</p> <p><a href="https://www.freevectormaps.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/freemaps.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Slidr.js</h1> <p><a href="http://www.bchanx.com/slidr" rel="nofollow external" class="bo">Slidr.js</a> is a lightweight, simple JS library, with no dependencies, for adding slide transitions to your page.</p> <p><a href="http://www.bchanx.com/slidr" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/slidrjs.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Merry Icons</h1> <p><a href="http://handdrawngoods.com/store/merry-icons-100-christmas-vector-icons/" rel="nofollow external" class="bo">Merry Icons</a> is a set of 100 royalty-free hand drawn icons for Christmas, all for just $16.</p> <p><a href="http://handdrawngoods.com/store/merry-icons-100-christmas-vector-icons/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/merryicons.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Sir Trevor</h1> <p><a href="http://madebymany.github.io/sir-trevor-js/" rel="nofollow external" class="bo">Sir Trevor</a> is a rich web content editor that stores your content as structured JSON and Markdown rather than HTML, makes it simple to extend your content, and much more.</p> <p><a href="http://madebymany.github.io/sir-trevor-js/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/trevor.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Knock</h1> <p><a href="http://www.knocktounlock.com/" rel="nofollow external" class="bo">Knock</a> is an innovative way to unlock your Mac using your iPhone. All you have to do is knock on your iPhone’s screen and your Mac will unlock, no password required.</p> <p><a href="http://www.knocktounlock.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/knock.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>iOS7 App Icon Template for Obsessive Designers</h1> <p>This new <a href="http://savvyapps.com/blog/ios-7-app-icon-template-obsessive-designers/" rel="nofollow external" class="bo">iOS7 App Icon Template for Obsessive Designers</a> takes into account the branded approach of new iOS7 icon design, which is more like logo design than ever before.</p> <p><a href="http://savvyapps.com/blog/ios-7-app-icon-template-obsessive-designers/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/ios7template.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Ionicons</h1> <p><a href="http://ionicons.com/" rel="nofollow external" class="bo">Ionicons</a> are a premium icon font for the Ionic Framework, released under the open source MIT license.</p> <p><a href="http://ionicons.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/ionicons.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Temper</h1> <p><a href="https://temper.io/" rel="nofollow external" class="bo">Temper</a> is a simple app to let you create questions to embed on your website to get feedback so that you can better adapt to what your visitors want. Plans start at just $12/month.</p> <p><a href="https://temper.io/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/temper.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Sitedrop</h1> <p><a href="http://sitedrop.com/" rel="nofollow external" class="bo">Sitedrop</a> is an easy way for creatives to share their works-in-progress. Just connect to Dropbox to share any kind of file, which can then be downloaded, commented on, or favorited.</p> <p><a href="http://sitedrop.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/sitedrop.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Slack</h1> <p><a href="https://slack.com/" rel="nofollow external" class="bo">Slack</a> is a communication platform for teams that brings all of your communication into one place. It archives and organizes your messages as you go, and works with virtually every major platform.</p> <p><a href="https://slack.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/slack.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Streme</h1> <p><a href="http://streme.co/" rel="nofollow external" class="bo">Streme</a> is an easy way to keep a collaborative stream of links, with no signup required. You can add links to videos, music, and more.</p> <p><a href="http://streme.co/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/streme.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Silk</h1> <p><a href="https://www.silk.co/" rel="nofollow external" class="bo">Silk</a> is a sharing platform for creating collections about anything. Just create a site, add facts to your pages, and create overviews and visualizations.</p> <p><a href="https://www.silk.co/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/silk.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Canva</h1> <p><a href="https://www.canva.com/" rel="nofollow external" class="bo">Canva</a> is a new graphic design platform for the masses that allows designers to license their work for use by anyone. It can also be used to collaborate with clients, and speed up your design process.</p> <p><a href="https://www.canva.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/canva.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Fleep</h1> <p><a href="https://fleep.io/" rel="nofollow external" class="bo">Fleep</a> is a chat program, pinboard, and file drawer all rolled into one, available online and for iOS.</p> <p><a href="https://fleep.io/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/fleep.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Silvrback</h1> <p><a href="https://www.silvrback.com/" rel="nofollow external" class="bo">Silvrback</a> is a Markdown-powered hosted blog and bio page for your company blog. It’s clean and simple, but gives you complete control over your brand.</p> <p><a href="https://www.silvrback.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/silvrback.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>BamBam</h1> <p><a href="http://www.dobambam.com/" rel="nofollow external" class="bo">BamBam</a> is a project and task management app for teams that lets users with different work styles and roles work together more easily. It’s free for up to 10 users, with additional users only $7/each.</p> <p><a href="http://www.dobambam.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/bambam.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Snazzy Maps</h1> <p><a href="http://snazzymaps.com/" rel="nofollow external" class="bo">Snazzy Maps</a> is a repository of color schemes for Google Maps that you can use in your own designs. They’re all licensed under Creative Commons and are free to use.</p> <p><a href="http://snazzymaps.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/snazzy.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Font Combiner</h1> <p><a href="http://fontcombiner.com/" rel="nofollow external" class="bo">Font Combiner</a> is a web font creator that lets you create your own custom font with options for hinting, kerning, subsetting, and more.</p> <p><a href="http://fontcombiner.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/fontcombiner.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Typecast</h1> <p><a href="http://typecast.com/preview/google" rel="nofollow external" class="bo">Typecast</a> is an easy way to test drive Google fonts on screen. Sign up for an account to test across devices, as well as to access more than 24,000 fonts.</p> <p><a href="http://typecast.com/preview/google" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/typecast.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>CSS Inliner</h1> <p>If you create HTML emails, then <a href="http://inliner.cm/" rel="nofollow external" class="bo">CSS Inliner</a> can greatly simplify the process of writing your inline CSS. Just paste your HTML and it does the rest.</p> <p><a href="http://inliner.cm/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/inliner.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Onor</h1> <p><a href="https://onor.co/" rel="nofollow external" class="bo">Onor</a> is a team recognition platform that simplifies the process of encouraging and rewarding your team members.</p> <p><a href="https://onor.co/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/onor.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Tenebrae ($10)</h1> <p><a href="http://www.tendollarfonts.com/tenebrae/" rel="nofollow external" class="bo">Tenebrae</a> is a font inspired by the Giallo films of the 70s, along with other cult film posters.</p> <p><a href="http://www.tendollarfonts.com/tenebrae/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/tenebrae.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Sartorius ($10)</h1> <p><a href="http://www.tendollarfonts.com/sartorius/" rel="nofollow external" class="bo">Sartorius</a> is a display typeface that can work as either a mid-20th century futurist typeface, or an early 20th century industrial font, depending on which alternates are used.</p> <p><a href="http://www.tendollarfonts.com/sartorius/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/sartorius.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>The Hand ($25)</h1> <p><a href="http://www.myfonts.com/fonts/la-goupil/the-hand/" rel="nofollow external" class="bo">The Hand</a> is a handwritten font that is generic, readable, and balanced, to work well in every kind of design.</p> <p><a href="http://www.myfonts.com/fonts/la-goupil/the-hand/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/thehand.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Le Havre Layers ($69)</h1> <p><a href="http://www.myfonts.com/fonts/insigne/le-havre-layers/" rel="nofollow external" class="bo">Le Havre Layers</a> is a family of 21 decidedly-retro fonts that can be layered to create a wide variety of effects.</p> <p><a href="http://www.myfonts.com/fonts/insigne/le-havre-layers/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/lehavre.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Appleton ($35)</h1> <p><a href="http://www.myfonts.com/fonts/decade-typefoundry/appleton/" rel="nofollow external" class="bo">Appleton</a> is a typeface inspired by the late 1800s, and the food labeling of that era. It’s loaded with swashes, alternates, and stylistic and multilingual support.</p> <p><a href="http://www.myfonts.com/fonts/decade-typefoundry/appleton/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/appleton.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Pacific Northwest ($60)</h1> <p><a href="http://www.myfonts.com/fonts/cultivated-mind/pacific-northwest/" rel="nofollow external" class="bo">Pacific Northwest</a> is a handwritten font that’s fun and comes in two styles (regular and rough).</p> <p><a href="http://www.myfonts.com/fonts/cultivated-mind/pacific-northwest/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/pacificnorthwest.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Figa (free)</h1> <p><a href="http://www.behance.net/gallery/Figa-Free-Font/4382703" rel="nofollow external" class="bo">Figa</a> is a free display font from Pier Paolo. It’s free to use as long as you email a copy of your work to the designer.</p> <p><a href="http://www.behance.net/gallery/Figa-Free-Font/4382703" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/figa.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Farewell (free)</h1> <p><a href="http://www.behance.net/gallery/-Farewell-Regular-Free-font-project/11678489" rel="nofollow external" class="bo">Farewell</a> is a free display font designed by Marianela Grande that’s perfect for headlines.</p> <p><a href="http://www.behance.net/gallery/-Farewell-Regular-Free-font-project/11678489" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/farewell.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Born (free)</h1> <p><a href="http://www.carlosdetoro.com/born-en/" rel="nofollow external" class="bo">Born</a> is a humanistic serif typeface based on traditional calligraphic forms, with some modern twists. It’s highly legible, even at small sizes.</p> <p><a href="http://www.carlosdetoro.com/born-en/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/born.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Appetite Sketch ($29)</h1> <p><a href="http://www.myfonts.com/fonts/deniserebryakov/appetite-sketch/" rel="nofollow external" class="bo">Appetite Sketch</a> is a handdrawn version of the popular Appetite font, designed by Denis Serebryakov.</p> <p><a href="http://www.myfonts.com/fonts/deniserebryakov/appetite-sketch/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads6/whatsnew-nov13/appetite.jpg" width="650" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p><strong><em>Know of a new app or resource that should have been included but wasn’t? Let us know in the comments!</em></strong></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/designersfolder-xmas2.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Over 500 Colorful Christmas Illustrations – only $17!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Whats new for designers, November 2013" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/11/whats-new-for-designers-november-2013/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F11%2Fwhats-new-for-designers-november-2013%2F&amp;t=What%E2%80%99s+new+for+designers%2C+November+2013" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F11%2Fwhats-new-for-designers-november-2013%2F&amp;t=What%E2%80%99s+new+for+designers%2C+November+2013" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F11%2Fwhats-new-for-designers-november-2013%2F&amp;t=What%E2%80%99s+new+for+designers%2C+November+2013" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F11%2Fwhats-new-for-designers-november-2013%2F&amp;t=What%E2%80%99s+new+for+designers%2C+November+2013" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F11%2Fwhats-new-for-designers-november-2013%2F&amp;t=What%E2%80%99s+new+for+designers%2C+November+2013" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/180263954041/u/49/f/661066/c/35285/s/338b9d67/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180263954041/u/49/f/661066/c/35285/s/338b9d67/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The November edition of what’s new for web designers and developers includes new web apps, graphic design tools, coding resources, project management tools, icons, mapping resources, and some...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/338b9d67/sc/4/l/0L0Swebdesignerdepot0N0C20A130C110Cwhats0Enew0Efor0Edesigners0Enovember0E20A130C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38198/guest@my.umbc.edu/4e9c0aea29676896149650279b235302/api/pixel</TrackingUrl>
<Tag>apps</Tag>
<Tag>art</Tag>
<Tag>best-of</Tag>
<Tag>business</Tag>
<Tag>compilation</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>fonts</Tag>
<Tag>freelancing</Tag>
<Tag>graphic-design</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>icons</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>jquery</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>resources</Tag>
<Tag>responsive-design</Tag>
<Tag>sql</Tag>
<Tag>typography</Tag>
<Tag>web-design</Tag>
<Tag>wordpress</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 11 Nov 2013 03:15:37 -0500</PostedAt>
<EditAt>Mon, 11 Nov 2013 03:15:37 -0500</EditAt>
</NewsItem>

</News>
