<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>deconcept &#187; css</title>
	<atom:link href="http://blog.deconcept.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.deconcept.com</link>
	<description>You&#039;ve got your good thing, and I&#039;ve got mine</description>
	<lastBuildDate>Mon, 30 Jan 2012 16:14:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A modern approach to Flash SEO</title>
		<link>http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/</link>
		<comments>http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 12:37:37 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flashobject]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/</guid>
		<description><![CDATA[Search engine optimization is one of the most popular subjects when nerds sit around and talk about Flash. &#8220;Does Google index your swf files?&#8221; seems to be the most popular question, usually garnering plenty of &#8216;yes&#8216; and &#8216;no&#8217; and &#8216;maybe&#8217; &#8230; <a href="http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Search engine optimization is one of the most popular subjects when nerds sit around and talk about Flash. &#8220;Does Google index your swf files?&#8221; seems to be the most popular question, usually garnering plenty of &#8216;<a href="http://www.informit.com/articles/article.asp?p=454163&#038;seqNum=1" rel="external">yes</a>&#8216; and &#8216;no&#8217; and &#8216;maybe&#8217; answers. The real answer to this question, once and for all, is this: </p>
<p><em>It doesn&#8217;t matter</em>.</p>
<p>To understand this answer, you need to understand what Flash <em>is</em>. And to do that, you need to understand modern web development philosophy. First off, you need to embrace web standards. Semantic markup and separating content from style and behavior is the only way you should be building your sites. Many web standardistas have been recommending this method of web development for years, and rightly so. However, this post isn&#8217;t the place to go into the whys of this type of development, so I&#8217;ll skip that part and just say this about how it&#8217;s done: There are three areas of front-end web development: Content, Style, and Behavior. You should always keep these three things separated as much as possible.</p>
<p>That brings up the question: &#8220;Where does Flash fit into this three pillar method of web development?&#8221; Is it content? Is it behavior? Is it style? While it could be considered all three, most professional Flash developers will remove the content from their Flash movies and load it in using Flash remoting or XML files. That leaves us with style and behavior.</p>
<p>Style is added using CSS. Generally when you add images to your HTML that are purely presentational (no text or required content in them) you should add them in using CSS. In most cases you don&#8217;t want Google to index them because people don&#8217;t search the web for &#8216;top left rounded corner gif.&#8221; They search for content. Even if Google upgrades their crawler someday to read CSS files and index the images, they probably wouldn&#8217;t use the information for more than statistical analysis because of this.</p>
<p>Behavior is generally added using Javascript. Maybe you want a new window to open set to a certain size, or you want to use some fancy Ajax to let users rate something without refreshing the page. This should all be added <a href="http://www.onlinetools.org/articles/unobtrusivejavascript/" rel="external">unobtrusively</a>, and if the browser doesn&#8217;t support Javascript, it will hopefully still work. Unfortunately, not everyone considers this, and these days Javascript is becoming more and more of a requirement to use most websites. So you should always provide some sort of alternative for non-Javascript users. When it comes to indexing behavior, Google will for the most part not index your Javascript files. Even if it did, most web users would have no idea what the .js file they are looking at actually does. When using Javascript to change your document, Google will not read the &#8216;final&#8217; page, but only the raw HTML file. Google does not render Javascript <sup><a href="#note1">1</a></sup>.</p>
<p>Now that you know all of this, it&#8217;s time to look at how to treat your Flash content. Since we&#8217;ve determined we <em>don&#8217;t</em> want Google to index our swf files, but we <em>do</em> want it to index the content displayed inside them, what is the best way to go about this?</p>
<p>As stated before, if you are building Flash sites professionally, you probably move all your content out of your Flash movie and into an XML file or keep it in a database. This makes it much easier to allow Google to index this content by using progressive enhancement.</p>
<p>Progressive enhancement is a method of web development that goes hand in hand with Web Standards. You start with your HTML (your content), then add CSS (your look and feel), then add in additional behavior (Javascript, Ajax, Flash, any other interactivity that isn&#8217;t handled automatically by the browser).</p>
<p>The best way to add Flash progressively is by using Javascript, or more specifically, a script like <a href="/flashobject/">FlashObject</a>. First you lay out your page as if you aren&#8217;t using Flash. If you are using a database for your content, you can spit out that data as HTML where the Flash movie will go on the page (or maybe just a preview of the content, it&#8217;s up to you to show Google the content you would like indexed). Then you use FlashObject to replace this content only if the user has Javascript enabled and the required Flash plugin version.</p>
<p>Here&#8217;s a small example of what that might look like:</p>
<pre><code>&lt;div id="flashcontent"&gt;
    This is replaced by the Flash content if the user has the correct version of the Flash plugin installed.
    Place your HTML content in here and Google will index it just as it would normal HTML content (because it <em>is</em> HTML content!)
    Use HTML, embed images, anything you would normally place on an HTML page is fine.
&lt;/div&gt;
&lt;script type="text/javascript"&gt;
    // &lt;![CDATA[
    var fo = new FlashObject("flashmovie.swf", "flashmovie", "300", "300", "8", "#FF6600");
    fo.write("flashcontent");
    // ]]&gt;
&lt;/script&gt;</code></pre>
<p>This causes Google to skip the Flash swf files and only index the HTML (the content!) you place on the page. You can place links to other pages, images, whatever you want Google to index, and when a viewer with a browser that supports Flash visits your site, they will then see the Flash content. This gives you full control and much greater predictability over what content Google will index. And if your content is pulled from a database that is editor controlled, your pages will update and be re-indexed as the content changes without the need to re-publish all your swf files.</p>
<p><small id="note1"><sup>1</sup> Currently Google does not render the Javascript on a page, but there are rumors that they are developing a new crawler based on Firefox (they employ a number of Mozilla foundation members) that will index pages based on how the browser sees them, instead of the raw HTML content. This means HTML hidden by CSS may not be indexed, and pages that are altered by Javascript after they load will be indexed how they appear to the user. <em>However</em>, this is all rumors and until it happens Google will ignore your Javascript content.</p>
<p>Note: In this article I use the &#8216;Google&#8217; name often, but it can be interchanged with any search engine, as they all work roughly the same way.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/feed/</wfw:commentRss>
		<slash:comments>517</slash:comments>
		</item>
		<item>
		<title>XM Radio Online v2.0 launches, now with AJAX!</title>
		<link>http://blog.deconcept.com/2005/04/26/xm-radio-online-v20-now-with-ajax/</link>
		<comments>http://blog.deconcept.com/2005/04/26/xm-radio-online-v20-now-with-ajax/#comments</comments>
		<pubDate>Tue, 26 Apr 2005 14:44:38 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2005/04/26/xm-radio-online-v20-now-with-ajax/</guid>
		<description><![CDATA[XM Radio Online v2.0 is up. This was a complete rebuild of the UI and a nice overhaul to the back-end as well. Unlike the previous version, the UI is now mostly Javascript using xmlHttpRequest (that&#8217;s AJAX if you follow &#8230; <a href="http://blog.deconcept.com/2005/04/26/xm-radio-online-v20-now-with-ajax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://listen.xmradio.com/" rel="external">XM Radio Online v2.0</a> is up. This was a complete rebuild of the UI and a nice overhaul to the back-end as well. Unlike the previous version, the UI is now mostly Javascript using <code>xmlHttpRequest</code> (that&#8217;s AJAX if you follow the trendy names for these things) for the channel/song data updates. There&#8217;s still a few small Flash movies for displaying the presets and the current song data.</p>
<p>Here&#8217;s a screenshot of the new player:</p>
<p><img src="/images/2005/04/xmradioonline.gif" alt="XM Radio Online Player v2.0" /></p>
<p>This new version should be much more accessible and easier to use, and also takes up fewer system resources, so people who want to tune in a channel and leave it playing in the background while they work should be happier.</p>
<p>This was an excellent project to work on &#8211; while I&#8217;ve done quite a bit of DHTML/Javascript work in the past, I&#8217;ve never used it as a base for an entire application. This was also the first time I used xmlHttpRequest, but I found that applying my Flash knowledge to the AJAX model worked out great &#8211; the only tricky part was figuring out a few <a href="http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/">browser inconsistencies</a> and working around those.</p>
<p>If you want to check it out, you can <a href="http://listen.xmradio.com/">sign up for a free 3 day trial</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2005/04/26/xm-radio-online-v20-now-with-ajax/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Safari and links to elements in overflow:auto content</title>
		<link>http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/</link>
		<comments>http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/#comments</comments>
		<pubDate>Sat, 26 Mar 2005 02:26:57 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/</guid>
		<description><![CDATA[I&#8217;m working on a project right now that has some content in div tags with their overflow property set to auto. Then, on another part of the page, there are links that point to elements (using their IDs) inside the &#8230; <a href="http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a project right now that has some content in <code>div</code> tags with their <code>overflow</code> property set to <code>auto</code>. Then, on another part of the page, there are links that point to elements (using their IDs) inside the overflowed <code>div</code> tags (<a href="/code/overflowsafari/overflowsafari.html">See example</a>). This all works just fine in IE6 and Firefox/Mozilla, but Safari wasn&#8217;t behaving. You can click the links all day long, but Safari won&#8217;t scroll the selected anchor into view.</p>
<p>Well, after a few hours of tyring different ways to hack Safari into submission, I decided that the only way I could get it working was to use some Javascript, so I thought I should share the code since there were a few pages on Google also looking for solutions.</p>
<p>Here is what the Javascript looks like:</p>
<pre><code>var targBox = "box";
function init() {
	if (document.getElementById) {
		var atags = document.getElementsByTagName("A");
		for (var i=0;i&lt;atags.length;i++) {
			var ca = atags[i];
			if (ca.href.indexOf("#") &gt; -1) {
				ca.onclick = function() {
					scrollDivToAnchor(this.href.split("#")[1]);
				}
			}
		}
	}
}
function scrollDivToAnchor(a) {
	var b = document.getElementById(targBox);
	b.scrollTop = document.getElementById(a).offsetTop - b.offsetTop;
}
</code></pre>
<p>Sample page with the working code:</p>
<p><a href="/code/overflowsafari/overflowsafarijs.html">View Example</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2005/03/25/safari-and-links-to-elements-in-overflow-auto-content/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>WordPress next / previous post links</title>
		<link>http://blog.deconcept.com/2005/02/07/wordpress-next-previous-post-links/</link>
		<comments>http://blog.deconcept.com/2005/02/07/wordpress-next-previous-post-links/#comments</comments>
		<pubDate>Mon, 07 Feb 2005 05:04:35 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[blogs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2005/02/07/wordpress-next-previous-post-links/</guid>
		<description><![CDATA[I just added some next / previous post links to this blog. It was really easy to do it, and I think it is a very nice improvement. All of the functions are already built into WordPress, it was just &#8230; <a href="http://blog.deconcept.com/2005/02/07/wordpress-next-previous-post-links/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just added some next / previous post links to this blog. It was really easy to do it, and I think it is a very nice improvement. All of the functions are already built into WordPress, it was just a matter of <a href="http://codex.wordpress.org/Template_Tags/next_post" rel="external">finding them</a>.</p>
<p>Here&#8217;s the PHP code to place where you want the links to show up:</p>
<blockquote><p><code>&lt;?php if($single) { ?&gt;<br />
&lt;div class="nextprev"&gt;<br />
&lt;span class="prev"&gt;&lt;?php previous_post('&amp;lsaquo; %', '', 'yes', 'no'); ?&gt;&lt;/span&gt;<br />
&lt;span class="next"&gt;&lt;?php next_post('% &amp;rsaquo;', '', 'yes', 'no'); ?&gt;&lt;/span&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</code></p></blockquote>
<p>And here&#8217;s the CSS I added to my stylesheet to get them to sit where I wanted them:</p>
<blockquote><pre><code>.nextprev {
    height: 1.5em;
}
.nextprev .prev {
    float: left;
}
.nextprev .next {
    float: right;
}</code></pre>
</blockquote>
<p>I&#8217;m not entirely sure they will stay. I might replace them with something different, like a &#8220;more posts in this category&#8221; or a &#8220;related posts&#8221; type setup. I like the idea of flipping through a blog in a linear fashion, and I think it suits this blog quite well since all the content is generally about interesting <a href="http://www.wired.com/news/culture/0,1284,64596,00.html" rel="external">internet</a> happenings or loosely related technical offerings.</p>
<p>Either way, it&#8217;s pretty simple to add them to your own blog, so enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2005/02/07/wordpress-next-previous-post-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iVillage.com redesign launched</title>
		<link>http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/</link>
		<comments>http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/#comments</comments>
		<pubDate>Thu, 27 Jan 2005 05:05:25 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/</guid>
		<description><![CDATA[I mentioned that the iVillage entertainment section soft-launched a couple of weeks ago, well now the full site is up and kicking (complete with horrid full screen ads to skip before viewing the front page). It was a very&#8230; ehm&#8230; &#8230; <a href="http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I mentioned that the iVillage entertainment section <a href="/2004/12/21/ivillage-redesign/">soft-launched</a> a couple of weeks ago, well now <a href="" rel="external">the full site is up and kicking</a> (complete with horrid full screen ads to skip before viewing the front page).</p>
<p>It was a very&#8230; ehm&#8230; colorful project to work on :). As mentioned in my <a href="/2004/12/21/ivillage-redesign/">other post</a>, the site is XHTML 1.0 transitional with CSS used for layout, with a little Flash content peppered in there for some extra flavor. More and more of the sites we are working on these days entail an XHTML/CSS layout and then a few Flash movies embedded around in various locations to spice things up a bit, and I have to say it&#8217;s working out great. I really think a lot more designers will go in the direction of hybrid sites rather than the old full Flash site or straight HTML in the coming year.</p>
<p>Another thing to note is the validation problem. It seems that most of the problems (if not all) stem from a few sloppy Javascript embeds and unencoded ampersands that were added in by the iVillage development team. Unfortunately with the way the site was developed &#8211; doing the design and template coding first, then integrating those files with the content management system &#8211; and without someone on the development side constantly cracking the validation whip, I suppose these things are bound to happen.</p>
<p>Anyway, enjoy the site: <a href="http://www.ivillage.com/" rel="external">www.ivillage.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>100% height and 100% width XHTML Flash embed</title>
		<link>http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/</link>
		<comments>http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/#comments</comments>
		<pubDate>Sun, 02 Jan 2005 19:45:37 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/</guid>
		<description><![CDATA[I&#8217;ve been asked this question a few times in the last couple of months, so I thought I would put together an example page to show how you can get Flash content to stretch to 100 percent height and width &#8230; <a href="http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been asked this question a few times in the last couple of months, so I thought I would put together an example page to show how you can get Flash content to stretch to 100 percent height and width without using tables.</p>
<p><a href="http://blog.deconcept.com/flashobject/fullpage.html">View example: 100% width and height stretched Flash embed.</a></p>
<p>It&#8217;s actually pretty simple. Here&#8217;s some of the CSS I used:</p>
<blockquote><pre class="code">/* hide from ie5 mac &#92;*/
html {
  height: 100%;
  overflow: hidden;
}
#flashcontent {
  height: 100%;
}
/* end hide */
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #eee;
}</pre>
</blockquote>
<p>Setting the <code>html</code> tag to 100% height and then placing the Flash movie inside a <code>div</code> that is also set to 100% height does the trick.</p>
<p>Notice the <code>overflow: hidden</code> on the <code>html</code> element since IE will show the scrollbar even if the page doesn&#8217;t need to scroll. This line will force IE to hide any content that is outside of the browser window, and therefore hide the scrollbar as well.</p>
<p>To embed the Flash movie, I used my <a href="http://blog.deconcept.com/2004/10/14/web-standards-compliant-javascript-flash-detect-and-embed/">FlashObject</a> Javascript embed so the page will validate and I have access to all the various Flash parameters I might need to pass to the Flash movie.</p>
<p><strong>UPDATE (01-05-2005):</strong> <a href="http://chattyfig.figleaf.com/ezmlm/ezmlm-cgi?1:mss:127980:lhckgnlecmaileoflhig" rel="external">Someone pointed out</a> a bug with this in IE 5 on Macintosh, so I&#8217;ve updated the CSS a bit to make it work. Current verified working browsers are: IE 6 (PC), IE 5 (Mac), Safari, Firefox (PC, Mac), Mozilla (PC, Mac), Opera 7.54 (Mac).</p>
<p><s>If you have other browsers available for testing I would love to know if this displays properly or not. I&#8217;m mainly interested in IE 5 and 5.5 on a PC.</s></p>
<p><strong>UPDATE (1-17-05): </strong> Tested in IE 5.01 sp2 and IE 5.5 sp2 on a pc today, and it works great.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2005/01/02/100-height-and-100-width-xhtml-flash-embed/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>iVillage Redesign</title>
		<link>http://blog.deconcept.com/2004/12/21/ivillage-redesign/</link>
		<comments>http://blog.deconcept.com/2004/12/21/ivillage-redesign/#comments</comments>
		<pubDate>Tue, 21 Dec 2004 22:33:00 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.deconcept.com/2004/12/21/ivillage-redesign/</guid>
		<description><![CDATA[For some reason nobody told me that the iVillage redesign that we did was partially launched last month. This was one of the first projects I worked on when I moved to New York. We decided on a CSS layout &#8230; <a href="http://blog.deconcept.com/2004/12/21/ivillage-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For some reason nobody told me that the <a href="http://entertainment.ivillage.com/" rel="external">iVillage redesign that we did was partially launched last month</a>.</p>
<p>This was one of the first projects I worked on when I moved to New York. We decided on a CSS layout using XHTML 1.0 transitional (sent as text/html), with some Flash peppered around. Right now only the entertainment section is using the new design, with the other sections to follow as their internal team takes our template and adapts the content in the other sections. Unfortunately the site doesn&#8217;t validate because of one <a href="http://validator.w3.org/check?verbose=1&#038;uri=http%3A//entertainment.ivillage.com/" rel="external">little error(!)</a> that I&#8217;ll be passing along to their internal team along with a few small visual errors to fix.</p>
<p>It uses a similar method to the <a href="http://www.alistapart.com/articles/dropdowns/" rel="external">suckerfish dropdowns</a> for the flyout menus on the left navigation, and some basic CSS rollovers for the main navigaion tabs at the top.</p>
<p>I would have liked to use my <a href="http://blog.deconcept.com/2004/10/14/web-standards-compliant-javascript-flash-detect-and-embed/">FlashObject</a> embed for the Flash content, but this was handed over to their internal team way before I had even thought it up, so it uses generic Javascript to detect and embed the Flash movies.</p>
<p><strong>UPDATE (12-22-2004):</strong> Looks like the one validation error was in some content that has now rotated off of the homepage, so now <a href="http://validator.w3.org/check?verbose=1&#038;uri=http%3A//entertainment.ivillage.com/" rel="external">it validates!</a></p>
<p><strong>UPDATE (01-31-2005):</strong> <a href="http://blog.deconcept.com/2005/01/27/ivillage-redesign-launched/">The whole site went live this week</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.deconcept.com/2004/12/21/ivillage-redesign/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

