<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.cdf2.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:gr="http://www.google.com/schemas/reader/atom/" xmlns:idx="urn:atom-extension:indexing" idx:index="no" gr:dir="ltr"><!--
Content-type: Preventing XSRF in IE.

--><generator uri="http://www.google.com/reader">Google Reader</generator><id>tag:google.com,2005:reader/user/05475552637217086293/label/of People and Pixels - Web Design</id><title type="text">of People and Pixels - Web Design</title><author><name>Graefen</name></author><updated>2011-07-01T04:56:43Z</updated><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.cdf2.com/of-people-and-pixels-web-design" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="of-people-and-pixels-web-design" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><subtitle type="html">Thoughts on web design.</subtitle><entry gr:crawl-timestamp-msec="1309496203205"><id gr:original-id="">tag:google.com,2005:reader/item/50d2ce43aabff1ed</id><title type="html">OmniTI</title><published>2011-07-01T03:40:45Z</published><updated>2011-07-01T03:40:45Z</updated><link rel="alternate" href="http://www.omniti.com" type="text/html" /><summary xml:base="http://www.cdf2.com/" type="html">OmniTI Computer Consulting is the amazing company I work for. We specialize in websites and applications that need to be secure and/or scalable. We've worked with many companies from National Geographic to Etsy to AlliSports and many, many more. We also built FontDeck  and Circonus .</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design</id><title type="html">of People and Pixels -</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1234474351618"><id gr:original-id="tag:www.cdf2.com,2009-01-12:ddf5c14e6900e7f7924ec77448d245be/384fae20ec1147e97150a0818da5a40b">tag:google.com,2005:reader/item/693c8253f7f26759</id><title type="html">Bottom and Middle Vertically Aligned Titles with CSS</title><published>2009-02-12T20:57:07Z</published><updated>2009-02-12T20:57:07Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/bottom-and-middle-vertically-aligned-titles-with-css" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt;One thing I’ve really missed since migrating to standards-based (i.e. table-less) web design is the ability to vertically align elements, such as bottom-aligning text inside a block space, so the text will stay bottom-aligned when the browser’s text size is changed. With tables, it’s easy, just add &lt;em&gt;valign=&amp;quot;bottom&amp;quot;&lt;/em&gt; and you’re done. But with CSS and semantic HTML, it’s unfortunately not that easy yet.&lt;/p&gt;&lt;p&gt;I have taken inspiration from reading &lt;a href="http://www.meyerweb.com"&gt;Eric Meyer’s&lt;/a&gt; writings about the &lt;a href="http://positioniseverything.net/articles/onetruelayout/"&gt;One True Layout&lt;/a&gt;, especially about performing math with CSS properties.Then I thought, “why could we not use the concept of ’CSS math’ to do other things?” So I did!&lt;/p&gt;&lt;p&gt;The concept is simple: use the padding and margin of two nested elements to add and subtract different units (make sure both are set to display: block;). The key here is that you have to use the padding as the number to add and use the margin as the number to subtract. If you reverse them, then your text will disappear behind the top of an element’s bounding box.&lt;/p&gt;&lt;p&gt;The only caveat is that this technique is dependent on the number of lines of text remaining the same (except at extremely large text sizes, at which legibility is really the only concern). Thus, it works best for situations where your titles are determined ahead of time or are guaranteed to be short. It’s not really great in situations like blog entry titles where you typically don’t know how long titles will be on future entries.&lt;/p&gt;&lt;h5&gt;Bottom Aligned Titles&lt;/h5&gt;&lt;p&gt;For bottom aligned titles, the first step is measuring the distance between the top of the element and where you want the baseline to fall. By measuring to the baseline of the text, we ensure that when the browser’s text size is changed, the text resizes upwards instead of downwards. In figure 1 below you will see that our sample distance is 100 pixels. Set this distance as the top padding of your block element (padding-top: 100px).&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.cdf2.com/images/4.gif" alt="illustration of element with a top padding of 100 pixels" width="430" height="125"&gt;&lt;br&gt;figure 1&lt;/p&gt;&lt;p&gt;Now we get to use the magic of ems for the second part. Those of you who haven’t explored the unit “em” need to do some more reading, because it’s an awesome thing. Basically, one “em” is equivalent to the current text size, and it changes whenever the text size changes. The benefit here is that we can move up our titles using “lines of text” as the unit. If your line-height is 1 em, then 1 em is your “line of text” equivalent. Thus: 1 em would be one line of text, 2 ems would be two lines of text, etc. So in the case of a single-line title, we give the inner element a top margin of -1 em (again, make sure it’s set to display: block;), as you can see in figure 2 below.&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.cdf2.com/images/5.gif" alt="illustration of a nested element with a top margin of -1 em" width="430" height="127"&gt;&lt;br&gt;figure 2&lt;/p&gt;&lt;p&gt;Voila! Your text is magically bottom-aligned!&lt;/p&gt;&lt;h5&gt;Middle Aligned Titles&lt;/h5&gt;&lt;p&gt;If you want your titles to be middle-aligned, it’s the same process, just altered slightly. First, instead of measuring the top padding to the text baseline, measure it to the middle alignment point. Then, when applying the negative top margin to the inner element, use half of the line height instead of the whole value. &lt;/p&gt;&lt;p&gt;It’s that easy!&lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1227722623422"><id gr:original-id="tag:www.cdf2.com,2008-11-10:ddf5c14e6900e7f7924ec77448d245be/515a3a63723e91a1ac2d10a5eac75773">tag:google.com,2005:reader/item/28e8afd82dec67b4</id><title type="html">Fake Table Columns Using CSS</title><published>2008-11-26T16:42:21Z</published><updated>2008-11-26T16:42:21Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/fake-table-columns-using-css" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt;Anyone who&amp;#39;s been doing the HTML side of web design for a while has most likely laid out a page using tables. Nowadays, that&amp;#39;s frowned upon…and for good reason. But sometimes, tables are just handy! Sometimes it&amp;#39;s difficult to do what tables can do without them. But since I&amp;#39;m committed to using semantic HTML as much as possible, I&amp;#39;m always experimenting to figure out new ways to simulate tables&amp;#39; behavior. &lt;/p&gt;&lt;p&gt;I&amp;#39;ve had some limited success in simulating tables, in limited circumstances. This is one of those circumstances. In this instance, I was wanting two columns of content (not columns for page layout, that is). The exact behavior I was wanting is to give the left column a fixed width and have the right column be as wide as necessary to fill the remaining space, as seen in figure 1.&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.cdf2.com/images/2.gif" alt="figure 1: illustration of one fixed width column and one variable width column" title="illustration of one fixed width column and one variable width column" width="430" height="220"&gt;&lt;br&gt;figure 1&lt;/p&gt;&lt;p&gt;I also wanted the left column to resize if the text on the page was resized, to allow for flexibility in browser settings, and the solution turned out to be relatively simple. Simply float the left element and give it a width in ems. Then make sure the right element has “display: block;” and give it a left margin equal to the width of the left element (using ems). See figure 2 for an example. Voila! Problem solved!&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.cdf2.com/images/3.gif" alt="figure 2: CSS for one fixed width column and one variable width column. Left column, float left, width ten ems. Right column, display block, margin left ten ems." title="CSS for one fixed width column and one variable width column. Left column, float left, width ten ems. Right column, display block, margin left ten ems." width="272" height="95"&gt;&lt;br&gt;figure 2&lt;/p&gt;&lt;p&gt;I enjoy using this trick with forms. If you treat the input labels as the left elements and also give them “text-align: right;” then group the input and any other items  next to it together in an element on the right, you get a marvelously center-aligned form! (Make sure to give all the labels a width in ems that&amp;#39;s large enough to accommodate the longest label.) &lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1225741508075"><id gr:original-id="">tag:google.com,2005:reader/item/eebb39887c987a1a</id><title type="html">Designer Mom</title><published>2008-11-03T17:39:13Z</published><updated>2008-11-03T17:39:13Z</updated><link rel="alternate" href="http://www.nataliejost.com" type="text/html" /><summary xml:base="http://www.cdf2.com/" type="html">This is the site of Natalie Jost, a work-at-home-mom (WAHM) who's a fabulous designer and also a Christian. She writes about everything from her beliefs to being a mom as well as design (web and otherwise), of course. Her writing about all those topics combined was part of the inspiration for my dual-blog setup.</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design</id><title type="html">of People and Pixels -</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954621647"><id gr:original-id="">tag:google.com,2005:reader/item/999b5eee1ca47716</id><title type="html">Cause Marketing at 8G</title><published>2008-09-20T22:17:18Z</published><updated>2008-09-20T22:17:18Z</updated><link rel="alternate" href="http://www.cre8tivegroup.com" type="text/html" /><summary xml:base="http://www.cdf2.com/" type="html">Cre8tive Group (or "8G" for short) is where I used to practice website design (and other types of design and interactive development). They are a media marketing company focused on cause marketing and socially conscious clients. They specialize in two things: helping their clients figure out what their story is, and helping them tell it in the most compelling way [to inspire people].</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design</id><title type="html">of People and Pixels -</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954621646"><id gr:original-id="">tag:google.com,2005:reader/item/2369dfb53816f913</id><title type="html">Textpattern</title><published>2005-07-20T19:54:26Z</published><updated>2005-07-20T19:54:26Z</updated><link rel="alternate" href="http://www.textpattern.com/" type="text/html" /><summary xml:base="http://www.cdf2.com/" type="html">This the awesome content management system I use on this site. It's extremely flexible, easy to use, and outputs very clean markup.</summary><author gr:unknown-author="true"><name>(author unknown)</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?area=link&amp;category=web-design</id><title type="html">of People and Pixels -</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954504446"><id gr:original-id="tag:www.cdf2.com,2008-10-01:ddf5c14e6900e7f7924ec77448d245be/cfac4daef4299f37cedd9e2129b3d94a">tag:google.com,2005:reader/item/b2b249e4d5ace725</id><title type="html">How Wide Can Printable Images Be Without “Shrink To Fit?” [1]</title><published>2008-10-01T16:07:41Z</published><updated>2008-10-01T16:07:41Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/how-wide-can-printable-images-be-without-shrink-to-fit" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt;Ok, so I&amp;#39;m doing the printable version of a webpage layout for a client. The &amp;quot;tarket&amp;quot; is older middle-aged men and this particular page is printed a lot. I started with the assumption that browsers print by default at 72 &lt;abbr title="pixels per inch"&gt;ppi&lt;/abbr&gt; unless &amp;quot;shrink to fit&amp;quot; is turned on, which is a logical assumption considering how large browsers typically print things. But then I got to thinking, &amp;quot;is that a valid assumption? It&amp;#39;s been a long time since I&amp;#39;ve measured it…&amp;quot; &lt;/p&gt;&lt;p&gt;So I do some print preview screen captures in Firefox 3 and IE 7, and am plesantly surprised that they both print at higher resolutions than I thought. Unfortunately, they don&amp;#39;t both print at the same resolution. I also tested in Firefox 3 on Mac OS X, and it&amp;#39;s different than either Windows browser.&lt;/p&gt;&lt;p&gt;IE 7 seems to print at 96 &lt;abbr title="pixels per inch"&gt;ppi&lt;/abbr&gt;, which is pretty logical, but Firefox 3 only prints at 91.5 ppi…? What&amp;#39;s that about? Mac Firefox was higher than both, but I didn&amp;#39;t bother measuring it since I only cared if it was lower. The other bizarre thing is the default margins. They tend to be larger than I expected, around 0.6-0.8 inches on the left and right, leaving a lot less printable area than I thought based on my first screen captures.&lt;/p&gt;&lt;p&gt;So the result: &lt;strong&gt;the optimal printable width &lt;/strong&gt;seems to be &lt;em&gt;660 pixels&lt;/em&gt; wide, since the lowest resolution browser (Firefox 3) seems to print 664 pixels total, but I just rounded it down. Now, most of the time this doesn&amp;#39;t matter since a lot of people just use &amp;quot;shrink to fit&amp;quot; all of the time. But if you have a page that just &lt;em&gt;has&lt;/em&gt; to be guaranteed to print correctly, aim for 660 pixels or narrower and you&amp;#39;ll be golden. &lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954504446"><id gr:original-id="tag:www.cdf2.com,2008-09-14:ddf5c14e6900e7f7924ec77448d245be/b6e5422c6780ffdb642f5af506d01729">tag:google.com,2005:reader/item/22a0e5626d826678</id><title type="html">Javascript Event Bubbling</title><published>2008-10-28T16:13:44Z</published><updated>2008-10-28T16:13:44Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/javascript-event-bubbling" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt;When it comes its support for web standards, I&amp;#39;ve never thought of IE as being that bad. Yeah, it has its quirks, but it&amp;#39;s not as bad as most people think. I&amp;#39;ve done some pretty complex layouts and I&amp;#39;ve never come across any problems with IE that are insurmountable…until now. The interesting thing is that it&amp;#39;s not a problem with HTML or CSS support to which I&amp;#39;m referring, but instead a problem with its event handling. &lt;/p&gt;&lt;p&gt;I was trying to write a simple script to create little event popups (or popovers, as I like to call them, since they&amp;#39;re not separate browser windows) for a grid calendar. Now, of course, I went about doing it the correct way through &lt;a href="http://alistapart.com/articles/understandingprogressiveenhancement"&gt;progressive enhancement&lt;/a&gt;, which involves taking an existing page and adding event handlers dynamically, without any embedded JS. This worked easily in Firefox, where I do most of my development, but when I tested it in IE 7, I just couldn&amp;#39;t get it to work. &lt;/p&gt;&lt;p&gt;Here&amp;#39;s the basic concept I was implementing: the user mouses over a link on the calendar, and that shows a little popover with detailed information. Now, that popover is actually a link being styled as a block element, so that way the entire area of the popover can easily accept mouse events. When the user&amp;#39;s mouse leaves the calendar link that activated the popover, a timeout is set so that the popover is hidden within one second if nothing else happens. But if the user mouses over the popover, the timeout is deleted so that the popover remains visible. &lt;/p&gt;&lt;p&gt;I&amp;#39;ve used this technique before with great success, but for some reason it wasn&amp;#39;t working this time. After a little testing, I figured out that the function being called by the popover wasn&amp;#39;t receiving any reference to the popover element, which didn&amp;#39;t make any sense, because it was receiving the reference in Firefox. After some more debugging, I discovered that the function &lt;em&gt;was&lt;/em&gt; receiving a reference to the element initiating the mouseover event, but the problem was that the element was a span inside the link, instead of the link itself. &lt;/p&gt;&lt;p&gt;That made me remember research I had done a while ago on event bubbling, so I began that research anew, and came across a great article on understanding event bubbling called &lt;em&gt;&lt;a href="http://www.quirksmode.org/js/events_order.html"&gt;Event Order&lt;/a&gt;&lt;/em&gt; at &lt;a href="http://www.quirksmode.org"&gt;Quirksmode.org&lt;/a&gt;. So, it turns out that since I had additional elements inside my popover link (which was handling the events for the popover), it is actually &lt;em&gt;&lt;strong&gt;impossible&lt;/strong&gt;&lt;/em&gt; in IE to discover which element was supposed to be controlling the event. Wow, that&amp;#39;s really disturbing…why would Microsoft make an oversight like that? &lt;/p&gt;&lt;p&gt;So I ended up using jQuery, which is pretty cool. I had never used it before (and it has its own issues), but it did make my script shorter and somehow has its own workarounds to the IE event bubbling issue. &lt;/p&gt;&lt;p&gt;Event Bubbling Resources I&amp;#39;ve found useful:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.quirksmode.org/js/events_order.html"&gt;&lt;em&gt;Event Order&lt;/em&gt; at QuirksMode.org&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.javascriptkit.com/jsref/event.shtml"&gt;&lt;em&gt;Event Object&lt;/em&gt; reference at JavascriptKit.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://javascript.about.com/library/bldom19.htm"&gt;&lt;em&gt;Javascript DOM: Event Listeners&lt;/em&gt; at About.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.quirksmode.org/dom/events/index.html"&gt;&lt;em&gt;Event Compatibility Tables&lt;/em&gt; at QuirksMode.org&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.yourhtmlsource.com/javascript/eventhandlers.html"&gt;&lt;em&gt;Event Handlers&lt;/em&gt; at YourHTMLsource.com&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954504445"><id gr:original-id="tag:www.cdf2.com,2008-09-14:ddf5c14e6900e7f7924ec77448d245be/b79e18cbdb1bac8f6564e98d1794c070">tag:google.com,2005:reader/item/4c93d490291a0547</id><title type="html">Bottom-Aligned Titles</title><published>2008-09-10T22:07:02Z</published><updated>2008-09-10T22:07:02Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/bottom-aligned-titles" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt;Hi-di-ho, here&amp;#39;s the content of the blog entry itself. I talk about a bunch of stuff,  						but there&amp;#39;s not really anything here since this is a dummy entry. Why? Because I need  						some text to fill space.&lt;/p&gt; 					&lt;p&gt;Hi-di-ho, here&amp;#39;s the content of the blog entry itself. I talk about a bunch of stuff,  						but there&amp;#39;s not really anything here since this is a dummy entry. Why? Because I need  						some text to fill space. Hi-di-ho, here&amp;#39;s the content of the blog entry itself. I  						talk about a bunch of stuff, but there&amp;#39;s not really anything here since this is a  						dummy entry. Why? Because &lt;a href="http://www.cdf2.com/#"&gt;I need some text&lt;/a&gt; to fill space. Hi-di-ho, here&amp;#39;s the  						content of the blog entry itself. I talk about a bunch of stuff, but there&amp;#39;s not  						really anything here since this is a dummy entry. Why? Because I need some text to  						fill space.&lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954504445"><id gr:original-id="tag:www.cdf2.com,2008-09-20:ddf5c14e6900e7f7924ec77448d245be/f3541ab530a8f8c38d76f37a7492e332">tag:google.com,2005:reader/item/d93a34609d3e1b87</id><title type="html">Testing August Web Design</title><published>2008-08-20T22:59:07Z</published><updated>2008-08-20T22:59:07Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/testing-august-web-design" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam pulvinar felis et odio. Donec rutrum lobortis elit. Nullam velit. Aenean vitae pede. Proin vitae felis. Vestibulum a eros. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus vitae nibh id odio dapibus luctus. Fusce scelerisque. Proin elementum lorem eu magna feugiat dignissim. &lt;/p&gt; &lt;p&gt;Phasellus bibendum, elit id vehicula placerat, eros velit facilisis lacus, sit amet fringilla nulla odio eget massa. Phasellus semper interdum eros. Sed vel nisl pulvinar justo adipiscing congue. Curabitur vulputate turpis vitae enim. Praesent vel nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque ultrices. Vivamus luctus rutrum massa. Integer odio. Nullam sed sem a erat semper consectetuer. Vivamus dignissim mi id odio. Quisque non quam in enim bibendum rutrum. Suspendisse eu diam. &lt;/p&gt; &lt;p&gt;Ut leo odio, dapibus vitae, vulputate at, ullamcorper a, ipsum. Vivamus dictum. Fusce non ligula in dui iaculis luctus. Vivamus eu nisl vel mi gravida vulputate. Nam euismod posuere diam. Morbi tempus, arcu vitae faucibus lacinia, tellus enim commodo neque, id dapibus metus ipsum quis lacus. In hac habitasse platea dictumst. Cras nec nulla nec leo iaculis posuere. In sit amet risus. Donec in tortor aliquam nunc malesuada lobortis. Ut id turpis. Cras blandit sodales lorem. Morbi quis libero eget tortor porta pharetra. Aenean nibh. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In arcu est, consequat eleifend, iaculis ut, rhoncus congue, leo. &lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry><entry gr:crawl-timestamp-msec="1222954504445"><id gr:original-id="tag:www.cdf2.com,2008-09-20:ddf5c14e6900e7f7924ec77448d245be/d4740d786efec867c3fb59d595f5860d">tag:google.com,2005:reader/item/aac85045c1618985</id><title type="html">Testing June Web Design</title><published>2008-06-20T22:59:40Z</published><updated>2008-06-20T22:59:40Z</updated><link rel="alternate" href="http://www.cdf2.com/web-design/testing-june-web-design" type="text/html" /><content xml:base="http://www.cdf2.com/" type="html">&lt;p&gt; Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam pulvinar felis et odio. Donec rutrum lobortis elit. Nullam velit. Aenean vitae pede. Proin vitae felis. Vestibulum a eros. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus vitae nibh id odio dapibus luctus. Fusce scelerisque. Proin elementum lorem eu magna feugiat dignissim. &lt;/p&gt; &lt;p&gt;Phasellus bibendum, elit id vehicula placerat, eros velit facilisis lacus, sit amet fringilla nulla odio eget massa. Phasellus semper interdum eros. Sed vel nisl pulvinar justo adipiscing congue. Curabitur vulputate turpis vitae enim. Praesent vel nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque ultrices. Vivamus luctus rutrum massa. Integer odio. Nullam sed sem a erat semper consectetuer. Vivamus dignissim mi id odio. Quisque non quam in enim bibendum rutrum. Suspendisse eu diam. &lt;/p&gt; &lt;p&gt;Ut leo odio, dapibus vitae, vulputate at, ullamcorper a, ipsum. Vivamus dictum. Fusce non ligula in dui iaculis luctus. Vivamus eu nisl vel mi gravida vulputate. Nam euismod posuere diam. Morbi tempus, arcu vitae faucibus lacinia, tellus enim commodo neque, id dapibus metus ipsum quis lacus. In hac habitasse platea dictumst. Cras nec nulla nec leo iaculis posuere. In sit amet risus. Donec in tortor aliquam nunc malesuada lobortis. Ut id turpis. Cras blandit sodales lorem. Morbi quis libero eget tortor porta pharetra. Aenean nibh. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In arcu est, consequat eleifend, iaculis ut, rhoncus congue, leo. &lt;/p&gt;</content><author><name>Charlie Fiskeaux II</name></author><source gr:stream-id="feed/http://www.cdf2.com/rss/?section=web-design"><id>tag:google.com,2005:reader/feed/http://www.cdf2.com/rss/?section=web-design</id><title type="html">of People and Pixels - Web Design</title><link rel="alternate" href="http://www.cdf2.com/" type="text/html" /></source></entry></feed>

