<?xml version="1.0"?>
<News hasArchived="true" page="9058" pageCount="10794" pageSize="10" timestamp="Tue, 08 Sep 2026 00:51:25 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=9058&amp;range=30">
<NewsItem contentIssues="true" id="26010" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26010">
<Title>Adapting To The Ink: Tips And Tricks For Print Style Sheets</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>Print continues to be treated somewhat cursorily by most Web designers, who tend to be obsessed with pixels rather than printers. <strong>In the real world</strong>, a significant portion of people rely on pages printed from websites for reference: there’s still something about having a physical sheet of paper in one’s hands, even in this age of digital saturation.</p>
    <p>Web developers can take several steps to bridge the gap between the worlds of printers and LCD screens:</p>
    <ul>
    <li>Treat print as an equal partner in <a href="http://uxdesign.smashingmagazine.com/2012/11/08/ux-design-qa-with-christian-holst/" rel="nofollow external" class="bo">adaptive and responsive design</a>.</li>
    <li>Print background images and colors, where appropriate.</li>
    <li>Add visible URLs or scannable links for easy reference from the printed page.</li>
    <li>Use CSS filters to improve the result of printed graphics.</li>
    </ul>
    <h3>Design For Print, Not Screen</h3>
    <p>First, let’s cover the basics. Modern print style sheets are typically placed within a media query:</p>
    <pre><code>@media print {&#x000A;    &#x000A;    }</code></pre>
    <p>Recreating the entire CSS for your website is not necessary because the default styles will, on the whole, be inherited by the print query; only the <em>differences</em> need to be defined. Most browsers will automatically reverse colors when printing in order to save toner, but this won’t have the same degree of quality as a handcrafted solution. For best results, <strong>make color changes explicit</strong>. At the very least, a basic print media query should consist of the following:</p>
    <pre><code>@media print {&#x000A;       body {&#x000A;          color: #000;&#x000A;          background: #fff;&#x000A;       }&#x000A;    }</code></pre>
    <p>While <code>display: none</code> has rightly been <a href="http://laurakalbag.com/display-none/" rel="nofollow external" class="bo">derided in responsive design</a>, it is entirely appropriate for print style sheets: in most cases, our goal is not to recreate a screenshot of an entire page, but to provide a concise, well-designed print version of it. As a second step, eliminate page elements that are simply irrelevant in print, including navigation bars and background images.</p>
    <pre><code>/* Default styles */&#x000A;    &#x000A;    h1 {&#x000A;       color: #fff;&#x000A;       background: url(banner.jpg);&#x000A;    }&#x000A;    &#x000A;    @media print {&#x000A;       h1 {&#x000A;          color: #000;&#x000A;          background: none;&#x000A;       }&#x000A;    &#x000A;       nav, aside {&#x000A;          display: none;&#x000A;       }&#x000A;    }</code></pre>
    <p>Writing a print style sheet is one of the few times when you’ll ever use centimeters or inches in CSS. Largely irrelevant to screens, real-world measuring systems become very useful in print. To ensure that you are using the printed page effectively, write CSS to display your content edge to edge, negating any margins or padding that may be present, and balance this with an <code>@page</code> rule:</p>
    <pre><code>@media print {&#x000A;       h1 {&#x000A;          color: #000;&#x000A;          background: none;&#x000A;       }&#x000A;    &#x000A;       nav, aside {&#x000A;          display: none;&#x000A;       }&#x000A;    &#x000A;       body, article {&#x000A;          width: 100%;&#x000A;          margin: 0;&#x000A;          padding: 0;&#x000A;       }&#x000A;    &#x000A;       @page {&#x000A;          margin: 2cm;&#x000A;       }&#x000A;    }</code></pre>
    <p>For content to which users can be expected to add handwritten notes on the page, such as educational material, you might consider increasing the print margin.</p>
    <p>We also need to ensure that content is not broken across pages when printed. One obvious step is to prevent headings from being printed at the bottom of the page:</p>
    <pre><code>h2, h3 {&#x000A;       page-break-after: avoid;&#x000A;    }</code></pre>
    <p>Another rule will prevent images from bleeding over the edge of the printed page:</p>
    <pre><code>img {&#x000A;       max-width: 100% !important;&#x000A;    }</code></pre>
    <p>A third will ensure that articles always start on a fresh page:</p>
    <pre><code>article {&#x000A;       page-break-before: always;&#x000A;    }</code></pre>
    <p>Finally, we can prevent large elements, such as unordered lists and images, from being split across multiple pages.</p>
    <pre><code>ul, img {&#x000A;       page-break-inside: avoid;&#x000A;    }</code></pre>
    <p>While these declarations are not exhaustive, they’re a good start.</p>
    <h3>Force Background Images And Colors</h3>
    <p>On some websites, such as portfolios, background images and colors are an important visual component. If the user is printing from a WebKit browser (Google’s Chrome or Apple’s Safari), we can force the printer to render the colors as seen on screen (i.e. force any background images and colors to appear on the printed page). Generally speaking, we would do this for color printers, which we can test for in a separate media query:</p>
    <pre><code>@media print and (color) {&#x000A;       * {&#x000A;          -webkit-print-color-adjust: exact;&#x000A;          print-color-adjust: exact;&#x000A;       }&#x000A;    }</code></pre>
    <p>Sadly, there is (as yet) no immediate equivalent in Firefox, Opera or Internet Explorer.</p>
    <h3>Expand External Links For Print</h3>
    <p>We can’t (yet) directly interface with a printed page to explore links, so link URLs should be visible on the printed version of the Web page. To keep the page relatively clean, I prefer to expand only outbound links in articles, and suppress internal ones. If you’ve used relative URLs on your website for local links, you can easily do this through an attribute selector and <code>:after</code> pseudo=classes, thus preventing internal links and links around images from being printed:</p>
    <pre><code>@media print {&#x000A;       article a {&#x000A;          font-weight: bolder;&#x000A;          text-decoration: none;&#x000A;       }&#x000A;    &#x000A;       article a[href^=http]:after {&#x000A;          content:" &lt;" attr(href) "&gt; ";&#x000A;       }&#x000A;    }</code></pre>
    <p>Take the following HTML code and content:</p>
    <pre><code>&lt;p&gt;You’ve explored this &lt;a href="/blog"&gt;website&lt;/a&gt;; now it’s time to &lt;a href="<a href="http://www.webplatform.org/%22&gt;read">http://www.webplatform.org/"&gt;read</a> other Web development documentation&lt;/a&gt;.&lt;/p&gt;</code></pre>
    <p>Here is the printed result:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/01/Screen-Shot-2013-01-13-at-8.58.10-PM.png" rel="nofollow external" class="bo"><img alt="Screen Shot 2013-01-13 at 8.58.10 PM" src="http://media.smashingmagazine.com/wp-content/uploads/2013/01/Screen-Shot-2013-01-13-at-8.58.10-PM.png" width="468" height="101" style="max-width: 100%; height: auto;"></a></p>
    <p>One issue is that anchor links and links around images will also be expanded on the printed page. We can fix the anchor links fairly readily with a countermanding CSS rule:</p>
    <pre><code>article a[href^="#"]:after {&#x000A;       content: "";&#x000A;    }</code></pre>
    <p>Links around images are rather more difficult, because CSS does not currently allow for the selection of an element based on its children. Ideally, links around images would have a class that we could target via CSS. Longer term, CSS4 features a parent selector that will do the job:</p>
    <pre><code>$a:after &gt; img {&#x000A;       content: "";&#x000A;    }</code></pre>
    <p>CSS4 will also make expanding external links easier:</p>
    <pre><code>a:not(:local-link):after {&#x000A;       content:" &lt;" attr(href) "&gt; ";&#x000A;    }</code></pre>
    <p>All of these approaches assume that users will continue to type in URLs by hand. A better solution is to make the digital version of the page easier to access by providing a matching QR code.</p>
    <h3>Print QR Codes For Easy URL References</h3>
    <p>Often regarded as an advertising eyesore, QR codes have their place in certain circumstances. One obvious example is providing an easily-scanned sigil on a printed Web page that enables the user to return to the live version without having to type the URL.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/lizabeth.png" rel="nofollow external" class="bo"><img alt="Web page printed with a self-referential QR code" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/lizabeth.png" width="744" height="260" style="max-width: 100%; height: auto;"></a><br>
    <em>Web page printed with a self-referential QR code. <a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/lizabeth.png" rel="nofollow external" class="bo">Larger view</a>.</em></p>
    <p>To create the matching QR code, we’ll use Google’s Chart API, which has four required components:</p>
    <ul>
    <li>The kind of chart information we want Google to deliver (<code>qr</code>, in our case);</li>
    <li>The rendered size of the QR sigil, in pixels;</li>
    <li>The URL to encode;</li>
    <li>The form of character encoding to use.</li>
    </ul>
    <p>We’d typically associate the URL with a heading element at the top of the page:</p>
    <pre><code>&lt;header&gt;&#x000A;    &lt;h1&gt;Lizabeth’s Salon&lt;/h1&gt;&#x000A;    &lt;h2&gt;Providing Intellectual Stimulation Online Since 2001&lt;/h1&gt;&#x000A;    &lt;/header&gt;</code></pre>
    <p>To create the printed result, we’ll provide a margin on the right side of the <code>h1</code> that is large enough for the heading, and then position a QR code in that area:</p>
    <pre><code>header h1 {&#x000A;       margin-right: 200px;&#x000A;       margin-bottom: 2rem;&#x000A;       line-height: 1.5;&#x000A;    }</code></pre>
    <p>Because the QR code will be unique to each page, this would be added as an embedded style sheet:</p>
    <pre><code>@media print {&#x000A;       header h1:after {&#x000A;          content: url(<a href="https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150&amp;chl=http://yourdomain.com&amp;choe=UTF-8">https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150&amp;chl=http://yourdomain.com&amp;choe=UTF-8</a>);&#x000A;          position: absolute;&#x000A;          right: 0;&#x000A;          top: 0;&#x000A;       }&#x000A;    }</code></pre>
    <p>This approach has the downside of forcing the developer to enter a URL individually for each page into the API code. If your Web host is running PHP, you can provide the URL of the current page automatically:</p>
    <pre><code>@media print {&#x000A;       h1:after {&#x000A;          content: url(<a href="https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150">https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150</a>&#x000A;    &amp;chl=<a href="http://&lt;?=%24_SERVER%5B%22SERVER_NAME%22%5D.%24_SERVER%5B%22REQUEST_URI%22%5D;?&amp;gt">http://&lt;?=$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];?&amp;gt</a>;&#x000A;    &amp;choe=UTF-8);&#x000A;          position: absolute;&#x000A;          right: 0;&#x000A;          top: 0;&#x000A;       }&#x000A;    }</code></pre>
    <p>For WordPress:</p>
    <pre><code>@media print {&#x000A;       h1:after {&#x000A;          content: url(<a href="https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150">https://chart.googleapis.com/chart?cht=qr&amp;chs=150x150</a>&#x000A;    &amp;chl=<a href="http://&lt;?phpthe_permalink();?&gt;&amp;choe=UTF-8">http://&lt;?phpthe_permalink();?&gt;&amp;choe=UTF-8</a>);&#x000A;          position: absolute;&#x000A;          right: 0;&#x000A;          top: 0;&#x000A;       }&#x000A;    }</code></pre>
    <p>Obviously, both of the solutions above will only work on PHP and WordPress pages.</p>
    <h3>Use CSS3 Filters To Improve Print Quality</h3>
    <p>Browsers often have issues with printing out banner images, especially if the banners are white against a dark background:</p>
    <table>
    <tbody>
    <tr>
    <th>Logo as a solid image</th>
    <th>Printed result</th>
    </tr>
    <tr>
    <td><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-300x105.png" rel="nofollow external" class="bo"><img alt="logo-black-background" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-300x105.png" width="300" height="105" style="max-width: 100%; height: auto;"></a></td>
    <td><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-printed-300x80.png" rel="nofollow external" class="bo"><img alt="logo-black-background-printed" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-printed-300x80.png" width="300" height="80" style="max-width: 100%; height: auto;"></a></td>
    </tr>
    <tr>
    <th>Logo as an alpha-masked PNG</th>
    <th>Printed result</th>
    </tr>
    <tr>
    <td><code><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-300x105.png" rel="nofollow external" class="bo"><img alt="logo-black-background" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-black-background-300x105.png" width="300" height="105" style="max-width: 100%; height: auto;"></a></code></td>
    <td><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-transperant-printed-300x87.png" rel="nofollow external" class="bo"><img alt="logo-transperant-printed" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-transperant-printed-300x87.png" width="300" height="87" style="max-width: 100%; height: auto;"></a></td>
    </tr>
    </tbody>
    </table>
    <p>In theory, you could use a CSS sprite to switch between different versions of the logo for print, but that would mean doubling the file size for potentially little benefit. Instead, I recommend using CSS filters (and their SVG equivalent, for Firefox) to invert the image just before it hits the printed page:</p>
    <pre><code>@media print {&#x000A;       header {&#x000A;          background: none;&#x000A;          color: #000;&#x000A;       }&#x000A;    &#x000A;       header img {&#x000A;          filter: url(inverse.svg#negative);&#x000A;          -webkit-filter: invert(100%);&#x000A;          filter: invert(100%);&#x000A;       }&#x000A;    }</code></pre>
    <p>CSS3 filters do what you’d expect — invert the colors in header images, turning black to white and vice versa — but they only work in Chrome and Safari. To cover Firefox, we need a different approach — the equivalent filter written as a separate SVG file:</p>
    <pre>&lt;svg xmlns="<a href="http://www.w3.org/2000/svg%22&amp;gt">http://www.w3.org/2000/svg"&amp;gt</a>;&#x000A;    &lt;filter id="negative"&gt;&#x000A;    &lt;feColorMatrix values="-1 0 0 0 1&#x000A;    0 -1 0 0 1&#x000A;    0 0 -1 0 1&#x000A;    0 0 0 1 0" /&gt;&#x000A;    &lt;/filter&gt;&#x000A;    &lt;/svg&gt;&#x000A;    </pre>
    <p>The workings of the <code>feColorMatrix</code> SVG filter are a little complex to cover here. Much more information can be found in the article “<a href="http://dev.opera.com/articles/view/applying-color-tints-to-web-pages-with-s/" rel="nofollow external" class="bo">Applying Color Tints to Web Pages With SVG Filters and JavaScript</a> on Dev.Opera.</p>
    <p>The result of printing either form of logo (i.e. alpha-masked PNG or solid-black background) is now this:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-inverted-printed-300x91.png" rel="nofollow external" class="bo"><img alt="logo-inverted-printed" src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/logo-inverted-printed-300x91.png" width="300" height="91" style="max-width: 100%; height: auto;"></a></p>
    <h3>Conclusion</h3>
    <p>Due in part to the fact that printer use is <strong>not tracked by website analytics software</strong> and, thus, lacks strong metrics (although achieving this is possible, too, which we may discuss in a future article), print tends to be broadly ignored by Web developers. This is somewhat understandable, because most of the time we only read and browse pages online. As a result, developers tend to develop websites for the screens and devices in front of them, rather than for the printer at the other end of the office.</p>
    <p>On the other hand, even if people only occasionally need to print something from the Web, it would be ideal if the page design adapted to the printer, just as modern websites adapt to various screen sizes and devices. Print should be considered another aspect of adaptive design, usability and accessibility, and an equally important part of Web development.</p>
    <p>By treating print as another aspect of adaptive design, we fulfill the needs of more website users — and at the same time, save ink, paper and other resources, all of which are important aspects of <strong>sustainable design</strong>.</p>
    <h4>More Resources</h4>
    <p>A List Apart has a long and laudable history of supporting print style sheets through its articles and tutorials. While some of the following resources are now fairly old, they remain relevant to anyone who wishes to explore print as an equal partner in Web design.</p>
    <ul>
    <li>
    <a href="http://www.alistapart.com/articles/goingtoprint/" rel="nofollow external" class="bo">CSS Design: Going to Print</a>, Eric Meyer (10 May 2002)</li>
    <li>
    <a href="http://www.alistapart.com/articles/improvingprint/" rel="nofollow external" class="bo">Improving Link Design for Print</a>, Aaron Gustafson (19 September 2005)</li>
    <li>
    <a href="http://www.alistapart.com/articles/building-books-with-css3/" rel="nofollow external" class="bo">Building Books With CSS3</a>, Nellie McKesson (12 June 2012)</li>
    <li>
    <a href="http://coding.smashingmagazine.com/2011/11/24/how-to-set-up-a-print-style-sheet/" rel="nofollow external" class="bo">How To Set Up A Print Style Sheet</a>, Christian Krammer (24 November 2011)</li>
    </ul>
    <p><em>Source of image on front page: <a href="http://bottlerocketcreative.com/" rel="nofollow external" class="bo">Bottlerocket Creative</a>.</em></p>
    <p><em>(al)</em></p>
    <hr>
    <p><small>© Dudley Storey for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Print continues to be treated somewhat cursorily by most Web designers, who tend to be obsessed with pixels rather than printers. In the real world, a significant portion of people rely on...</Summary>
<Website>http://www.smashingmagazine.com/2013/03/08/tips-and-tricks-for-print-style-sheets/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26010/guest@my.umbc.edu/1b7131a2f18edcf2634a5860a3f7950b/api/pixel</TrackingUrl>
<Tag>coding</Tag>
<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>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>Fri, 08 Mar 2013 07:14:31 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="25991" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25991">
<Title>Giving context to your content</Title>
<Body>
<![CDATA[
    <div class="html-content">In the first of a four-part series, Sandi Wassmer establishes a framework for content strategy<div><table border="0"><tbody><tr>
    <td><a href="http://share.feedsportal.com/viral/sendEmail.cfm?lang=en&amp;title=Giving+context+to+your+content&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fgiving-context-your-content" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/emailthis2.gif" style="max-width: 100%; height: auto;"></a></td>
    <td><a href="http://res.feedsportal.com/viral/bookmark.cfm?title=Giving+context+to+your+content&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fgiving-context-your-content" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/bookmark.gif" style="max-width: 100%; height: auto;"></a></td>
    </tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/159490036263/u/49/f/502346/c/32632/s/29580e9a/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/159490036263/u/49/f/502346/c/32632/s/29580e9a/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>In the first of a four-part series, Sandi Wassmer establishes a framework for content strategy</Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/t5kS68YNl5g/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25991/guest@my.umbc.edu/015dedfdc773521c687d001830b9ac54/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</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>Fri, 08 Mar 2013 06:55:46 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="25992" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25992">
<Title>Nomensa launches accessibility declaration tool</Title>
<Body>
<![CDATA[
    <div class="html-content">New service creates website accessibility statements<div><table border="0"><tbody><tr>
    <td><a href="http://share.feedsportal.com/viral/sendEmail.cfm?lang=en&amp;title=Nomensa+launches+accessibility+declaration+tool&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fnomensa-launches-accessibility-declaration-tool-132613" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/emailthis2.gif" style="max-width: 100%; height: auto;"></a></td>
    <td><a href="http://res.feedsportal.com/viral/bookmark.cfm?title=Nomensa+launches+accessibility+declaration+tool&amp;link=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fnomensa-launches-accessibility-declaration-tool-132613" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/images/bookmark.gif" style="max-width: 100%; height: auto;"></a></td>
    </tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>New service creates website accessibility statements</Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/91cQc69Cn8Y/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25992/guest@my.umbc.edu/7f26639e6474bf874f34b666677648b7/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</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>Fri, 08 Mar 2013 06:02:45 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="25436" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25436">
<Title>Why the World Needs More Brilliant &#8216;Stupid&#8217; Ideas</Title>
<Body>
<![CDATA[
    <div class="html-content">Next time someone says your business idea has more 'hair than brains,' consider the countless examples of fellow stupid-successful entrepreneurs.</div>
]]>
</Body>
<Summary>Next time someone says your business idea has more 'hair than brains,' consider the countless examples of fellow stupid-successful entrepreneurs.</Summary>
<Website>http://feedproxy.google.com/~r/YoungentrepreneurcomBlog/~3/L18UNGJqXqw/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25436/guest@my.umbc.edu/332d60861c2b86bef005ed788c41af1c/api/pixel</TrackingUrl>
<Tag>business-ideas</Tag>
<Tag>overcoming-obstacles</Tag>
<Tag>sara-blakely</Tag>
<Tag>starting-up</Tag>
<Tag>startup-business-ideas</Tag>
<Tag>success-stories</Tag>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 08 Mar 2013 06:00:31 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="26027" important="false" status="posted" url="https://my3.my.umbc.edu/posts/26027">
<Title>Free Resources to Help You Build Your Next WordPress Site</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1259902&amp;k=6989dd4b5220d0b14530453de7387991&amp;a=6762&amp;c=725258715" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1259902&amp;k=6989dd4b5220d0b14530453de7387991&amp;a=6762&amp;c=725258715" alt="" style="max-width: 100%; height: auto;"></a><p><a href="http://buysellads.com/buy/sitedetails/pubkey/6989dd4b5220d0b14530453de7387991/zone/1259902" rel="nofollow external" class="bo">Advertise here with BSA</a></p>
    <br><p><a href="http://sixrevisions.com/wordpress/free-resources-wordpress/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-01_wordpress_design_resources_thumbnail.jpg" width="550" height="200" alt="Free Resources to Help You Build Your Next WordPress Site" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://sixrevisions.com/category/wordpress/" rel="nofollow external" class="bo">WordPress</a> is a popular website publishing platform. What once was primarily a blogging system has now evolved into a flexible and robust <a href="http://sixrevisions.com/web-development/how-to-evaluate-what-cms-to-use/" rel="nofollow external" class="bo">CMS</a> used by both small businesses and large corporations alike.</p>
    <p></p>
    <p>When working with clients, front-end developers are often expected to produce creative, cutting edge content in a very short period of time.</p>
    <p>And beyond staying innovative, there can often be a lot of redundant coding and debugging which requires a careful, meticulous eye. Between managing client expectations and trying to produce well-designed sites in a reasonable amount of time, developers can really feel the pinch.</p>
    <p>Fortunately, there is an immense amount of resources to help aid with WordPress development.</p>
    <p>In this article, I’ve seeded through tons of stuff to bring you a list of my favorite free WordPress resources for designers and developers. From discovering inspiration to choosing the right WordPress theme framework, I hope you’ll find just what you need to kick start your next project.</p>
    <h3>WordPress Theme Design Inspiration</h3>
    <p>One of the toughest parts of web design can often be just getting started. And even once you’ve begun to build your <a href="http://sixrevisions.com/user-interface/website-wireframing/" rel="nofollow external" class="bo">wireframes</a> or designed your layouts, it’s easy to fall into the stylistic rhythms you’ve used in the past. This is why it’s important to continually research and interact with the work of other WordPress theme designers.</p>
    <p>The following sites are a great place to engage with new and fresh designs to keep you pumping out those jaw-dropping projects.</p>
    <h4><a href="http://themedesigngallery.com/cms/wordpress/" rel="nofollow external" class="bo">Theme Design Gallery</a></h4>
    <p><a href="http://themedesigngallery.com/cms/wordpress/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-02_wordpress_inspiration_themedesigngallery.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4>
    <a href="http://www.cssawards.net/tag/wordpress/" rel="nofollow external" class="bo">WordPress Tag</a> on CSS Awards</h4>
    <p><a href="http://www.cssawards.net/tag/wordpress/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-03_wordpress_inspiration_cssawards.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://wpinspiration.com/" rel="nofollow external" class="bo">WP Inspiration</a></h4>
    <p><a href="http://wpinspiration.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-04_wordpress_inspiration_wpinspiration.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.wpexplorer.com/wordpress-themes/" rel="nofollow external" class="bo">WPExplorer</a></h4>
    <p><a href="http://www.wpexplorer.com/wordpress-themes/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-05_wordpress_inspiration_wpexplorer.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://welovewp.com/" rel="nofollow external" class="bo">We Love WP</a></h4>
    <p><a href="http://welovewp.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-06_wordpress_inspiration_welovewp.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h3>WordPress Cheat Sheets</h3>
    <p>When developing WordPress themes, it can often be difficult to remember all of the specific steps and coding structures to building a complete theme.</p>
    <p>Cheat sheets are a great way of keeping referencing specific code queries with ease.</p>
    <h4><a href="http://www.simplybusiness.co.uk/microsites/wordpress-for-small-businesses/" rel="nofollow external" class="bo">Interactive WordPress Guide</a></h4>
    <p><a href="http://www.simplybusiness.co.uk/microsites/wordpress-for-small-businesses/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-07_wordpress_cheatsheet_interactiveguide.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://wptutsplus.s3.amazonaws.com/090_WPCheatSheets/WP_CheatSheet_ThemeAnatomy.jpg" rel="nofollow external" class="bo">Basic Theme Anatomy</a></h4>
    <p><a href="http://wptutsplus.s3.amazonaws.com/090_WPCheatSheets/WP_CheatSheet_ThemeAnatomy.jpg" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-08_wordpress_cheatsheet_themeanatomy.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://wptutsplus.s3.amazonaws.com/resources/Wordpress-Cheat-Sheet.pdf" rel="nofollow external" class="bo">WP Code &amp; Tags</a></h4>
    <p><a href="http://wptutsplus.s3.amazonaws.com/resources/Wordpress-Cheat-Sheet.pdf" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-09_wordpress_cheatsheet_tags.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://wptutsplus.s3.amazonaws.com/090_WPCheatSheets/WP_CheatSheet_LoopVisualModel.jpg" rel="nofollow external" class="bo">The Loop: Visual Model</a></h4>
    <p><a href="http://wptutsplus.s3.amazonaws.com/090_WPCheatSheets/WP_CheatSheet_LoopVisualModel.jpg" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-10_wordpress_cheatsheet_visualloop.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a>
    </p>
    <h3>WordPress Theme Frameworks</h3>
    <p>Instead of coding each new template from scratch, frameworks give WordPress developers a foundation to build upon. At their best, frameworks can save developers hours building and re-coding similar site structures.</p>
    <p>There are plenty of frameworks out there, and each one is unique. I found these to be worth a look.</p>
    <h4><a href="http://themble.com/bones/" rel="nofollow external" class="bo">Bones</a></h4>
    <p><a href="http://themble.com/bones/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-11_wordpress_framework_bones.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.gantry-framework.org/download" rel="nofollow external" class="bo">Gantry</a></h4>
    <p><a href="http://www.gantry-framework.org/download" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-12_wordpress_framework_gantry.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://whiteboardframework.com/" rel="nofollow external" class="bo">Whiteboard</a></h4>
    <p><a href="http://whiteboardframework.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-13_wordpress_framework_whiteboard.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://themeshaper.com/thematic/" rel="nofollow external" class="bo">Thematic</a></h4>
    <p><a href="http://themeshaper.com/thematic/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-14_wordpress_framework_thematic.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://themefortress.com/reverie/" rel="nofollow external" class="bo">Reverie</a></h4>
    <p><a href="http://themefortress.com/reverie/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-15_wordpress_framework_reverie.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h3>WordPress Tutorials Sites</h3>
    <p>No matter how experienced you are, you will run into walls that will need troubleshooting.</p>
    <p>However, one of the greatest things about WordPress is the gigantic community of developers to pull support from.</p>
    <p>There are hundreds of sites that offer extensive tutorials and responses to some of more difficult development questions.</p>
    <p>Below is a list of my favorite sites that continually offer answers for both beginners and experts alike.</p>
    <h4><a href="http://wp.tutsplus.com/" rel="nofollow external" class="bo">Wptuts+</a></h4>
    <p><a href="http://wp.tutsplus.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-16_wordpress_tutorials_wptutsplus.jpg" width="550" height="300" alt="Wptuts+" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.wpbeginner.com/" rel="nofollow external" class="bo">WP Beginner</a></h4>
    <p><a href="http://www.wpbeginner.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-17_wordpress_tutorials_wpbeginner.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://wpmu.org/category/tutorials/" rel="nofollow external" class="bo">WPMU</a></h4>
    <p><a href="http://wpmu.org/category/tutorials/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0326-18_wordpress_tutorials_wpmu.jpg" width="550" height="300" style="max-width: 100%; height: auto;"></a></p>
    <h3>WordPress Plugins</h3>
    <p>One of the best things about WordPress is the immense amount of free, open source plugins available. When looking to provide a specific functionality to your themes, it’s usually easy to discover a plugin that will fulfill the task with little work on your part.</p>
    <p>But beyond directly improving your site’s functionality, plugins can also greatly improve the efficiency of your development workflow.</p>
    <p>Below is a list of plugins that I found especially helpful to the development process.</p>
    <ul>
    <li>
    <a href="http://wordpress.org/extend/plugins/debug-bar" rel="nofollow external" class="bo"><strong>Debug Bar:</strong></a> The Debug Bar is an essential tool for anyone developing with WordPress. This plugin makes debugging issues simpler by showing query, cache, PHP warnings and other helpful debugging information.</li>
    <li>
    <a href="http://wordpress.org/extend/plugins/syntaxhighlighter/" rel="nofollow external" class="bo"><strong>SyntaxHighlighter:</strong></a> With SyntaxHighlighter you’re able to post code directly to your site without losing any formatting or helpful syntax colors. It makes writing and updating code in posts a whole lot easier.</li>
    <li>
    <a href="http://wordpress.org/extend/plugins/cms-tree-page-view/" rel="nofollow external" class="bo"><strong>CMS Tree Page View: </strong></a>CMS Tree Page View offers a simple but extremely helpful service. It allows you to quickly access all of your pages organized by their site structure. Not only can it help you find what you’re looking for quickly, but it can also give you a good overview of how your site’s content is taking shape.</li>
    <li>
    <a href="http://wordpress.org/extend/plugins/wp-google-fonts/%22" rel="nofollow external" class="bo"><strong>WP Google Fonts:</strong></a> WP Google Fonts makes using <a href="http://sixrevisions.com/css/font-face-web-fonts-issues/" rel="nofollow external" class="bo">web fonts</a> on WordPress themes easy. Since Google launched its free web font service, the web has been exploding with creative designs.</li>
    <li>
    <a href="http://wordpress.org/extend/plugins/broken-link-checker/" rel="nofollow external" class="bo"><strong>Broken Link Checker:</strong></a> This WordPress plugin crawls your site and returns a report that will notify you of any broken links or redirects. A must-have to make sure your site stays in tip-top shape.</li>
    <li>
    <a href="http://wordpress.org/extend/plugins/redirection/" rel="nofollow external" class="bo"><strong>Redirection:</strong></a> Redirection is a plugin that manages 301 redirects, tracks 404 errors and helps clean up any stray pages your site may have. It can be especially helpful if you’re trying to migrate pages from an old domain name.</li>
    </ul>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/web-development/making-money-designing-themes-what-you-should-know/" rel="nofollow external" class="bo">Making Money Designing Themes: What You Should Know</a></li>
    <li><a href="http://sixrevisions.com/wordpress/16-wordpress-sites-to-help-you-build-a-better-blog/" rel="nofollow external" class="bo">16 WordPress Sites to Help You Build a Better Blog</a></li>
    <li><a href="http://sixrevisions.com/wordpress/improve-wordpress-themes-tips/" rel="nofollow external" class="bo">10 Basic Tips for Improving WordPress Themes</a></li>
    <li>
    <em>Related categories</em>: <a href="http://sixrevisions.com/category/wordpress/" rel="nofollow external" class="bo">WordPress</a> and <a href="http://sixrevisions.com/category/web_design/" rel="nofollow external" class="bo">Web Design</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://cdn.sixrevisions.com/authors/luke_clum_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Luke Clum</strong> is a graphic designer and web developer from Seattle. He loves working with UI design and is an avid climber and outdoorsman. Check out his site, <a href="http://www.lukeclum.com/" rel="nofollow external" class="bo">www.lukeclum.com</a>. Follow him on Twitter @<a href="https://twitter.com/lukeclum" rel="nofollow external" class="bo">lukeclum</a>.</span></p>
    </div>
]]>
</Body>
<Summary>Advertise here with BSA      WordPress is a popular website publishing platform. What once was primarily a blogging system has now evolved into a flexible and robust CMS used by both small...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/u1me9zzxCSQ/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/26027/guest@my.umbc.edu/4afa11fa925013ebb71866fe1ab2ff91/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>web</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>Fri, 08 Mar 2013 05:00:09 -0500</PostedAt>
<EditAt>Fri, 08 Mar 2013 05:00:09 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="30107" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30107">
<Title>A Photo Service That Understands the Contents of Your Images</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Everpix organizes photos after analyzing them with software that can detect things such as animals, outdoor scenes, and people.</p>
    <p>Browsing digital photos usually means scrolling through them chronologically, unless they have been sorted into folders and collections. This week a startup company called <a href="http://www.everpix.com" rel="nofollow external" class="bo">Everpix</a> began offering an alternative: a system that uses machine vision software to analyze each photo for its content so that photos can be browsed using categories such as “city,” “animals,” “people,” and “nature.”</p>
    </div>
]]>
</Body>
<Summary>Everpix organizes photos after analyzing them with software that can detect things such as animals, outdoor scenes, and people.  Browsing digital photos usually means scrolling through them...</Summary>
<Website>http://www.technologyreview.com/news/512251/a-photo-service-that-understands-the-contents-of-your-images/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30107/guest@my.umbc.edu/cf1a495bf81191870e4e52eaef5bd120/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</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>Fri, 08 Mar 2013 00:00:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="25461" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25461">
<Title>Baseball Concludes Non-Conference Weekend Play with Home-and-Home Series vs. Mount St. Mary's</Title>
<Body>
<![CDATA[
    <div class="html-content">BALTIMORE � Though it's only the second weekend of March, UMBC (0-4) wraps up its non-conference weekend schedule with a pair of games against in-state rival Mount St. Mary's (3-7).  The Retrievers and Mountaineers will first face-off in Emmitsburg, Md. on Saturday and then meet again at Alumni Field on Sunday for UMBC's home-opener.  Both games are set for a 1:00 p.m. first pitch.</div>
]]>
</Body>
<Summary>BALTIMORE � Though it's only the second weekend of March, UMBC (0-4) wraps up its non-conference weekend schedule with a pair of games against in-state rival Mount St. Mary's (3-7).  The...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7745</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25461/guest@my.umbc.edu/a1ca28502368a25e7b22683cdbe90da3/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 08 Mar 2013 00:00:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="25492" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25492">
<Title>DiRito Makes Nine Saves in First Career Start but No. 6 Johns Hopkins Runs Past UMBC, 13-7</Title>
<Body>
<![CDATA[
    <div class="html-content">BALTIMORE � UMBC sophomore goalie Wes DiRito (Odenton, Md./DeMatha) made nine saves in his first career start, but No. 6 Johns Hopkins ran out to a 5-0 lead in the first quarter and held off UMBC, 13-7, Friday evening at Homewood Field.</div>
]]>
</Body>
<Summary>BALTIMORE � UMBC sophomore goalie Wes DiRito (Odenton, Md./DeMatha) made nine saves in his first career start, but No. 6 Johns Hopkins ran out to a 5-0 lead in the first quarter and held off UMBC,...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7749</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25492/guest@my.umbc.edu/04128003438fc4d53643d084f4563109/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 08 Mar 2013 00:00:00 -0500</PostedAt>
<EditAt>Fri, 08 Mar 2013 00:00:00 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="25493" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25493">
<Title>Jackson Places 13th in the 60m Dash at the NCAA Track and Field Championships</Title>
<Body>
<![CDATA[
    <div class="html-content">FAYETTEVILLE, Ark. � UMBC sophomore sprinter Mercedes Jackson placed 13th in the preliminary round of the 60m dash at the NCAA Track and Field Championships, Friday evening at the Randal Tyson Track Center at the University of Arkansas.</div>
]]>
</Body>
<Summary>FAYETTEVILLE, Ark. � UMBC sophomore sprinter Mercedes Jackson placed 13th in the preliminary round of the 60m dash at the NCAA Track and Field Championships, Friday evening at the Randal Tyson...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7750</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25493/guest@my.umbc.edu/df77670900604ba4b6d3c45fa9340baa/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 08 Mar 2013 00:00:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="25465" important="false" status="posted" url="https://my3.my.umbc.edu/posts/25465">
<Title>Men's Soccer Hosts Clinic for Casey Cares Foundation</Title>
<Body>
<![CDATA[
    <div class="html-content">BALTIMORE � The UMBC men's soccer team hosted a clinic and a pizza party with the Casey Cares Foundation on Saturday, Mar. 2.  The Casey Cares Foundation provides ongoing, uplifting programs with a special touch to critically ill children and their families.</div>
]]>
</Body>
<Summary>BALTIMORE � The UMBC men's soccer team hosted a clinic and a pizza party with the Casey Cares Foundation on Saturday, Mar. 2.  The Casey Cares Foundation provides ongoing, uplifting programs with...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7746</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/25465/guest@my.umbc.edu/80da695cbea868b5c25afc72276b143f/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 08 Mar 2013 00:00:00 -0500</PostedAt>
</NewsItem>

</News>
