<?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>Interactive Logic &#187; Web Design</title>
	<atom:link href="http://interactivelogic.net/wp/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://interactivelogic.net/wp</link>
	<description>Thoughts and observations about iPhone, iPad, and iOS Development</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:19:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Simple CSS Cross-Browser Drop Shadow</title>
		<link>http://interactivelogic.net/wp/2010/08/simple-css-cross-browser-drop-shadow/</link>
		<comments>http://interactivelogic.net/wp/2010/08/simple-css-cross-browser-drop-shadow/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 15:43:17 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=130</guid>
		<description><![CDATA[After seeing what Google did with Google Images, I thought, &#8220;OK&#8230; time to find a cross-browser way of doing drop shadows.&#8221; I was expecting to find something that combined CSS, HTML, and possibly some JQuery (which has some plugins for doing drop shadows, but none that really struck me as adequate for my project&#8217;s needs). [...]]]></description>
			<content:encoded><![CDATA[<p>After seeing what Google did with Google Images, I thought, &#8220;OK&#8230; time to find a cross-browser way of doing drop shadows.&#8221; I was expecting to find something that combined CSS, HTML, and possibly some JQuery (which has some plugins for doing drop shadows, but none that really struck me as adequate for my project&#8217;s needs).</p>
<p>So then I found a reference to this blog post by Robert Nyman:</p>
<p><a href="http://robertnyman.com/2010/03/16/drop-shadow-with-css-for-all-web-browsers/">Drop shadow with CSS for all web browsers &#8211; Robert&#8217;s talk</a></p>
<p>&#8230;which includes a very simple CSS rule that seems to work in the following browsers:</p>
<ul>
<li>Firefox 3.5+</li>
<li>Safari 3+</li>
<li>Google Chrome</li>
<li>Opera 10.50</li>
<li>Internet Explorer 5.5+</li>
</ul>
<p>&#8230;and here&#8217;s a quick look at the final product (with some extra commentary from yours truly&#8230;):</p>
<blockquote>
<pre>.shadow {
	/* firefox, mozilla, et al. */
	-moz-box-shadow: 3px 3px 4px #000;

	/* webkit: safari, chrome */
	-webkit-box-shadow: 3px 3px 4px #000;

	/* css3 */
	box-shadow: 3px 3px 4px #000;

	/* For IE 8 (concatenate on one line) */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(
		Strength=4, Direction=135, Color='#000000')";

	/* For IE 5.5 - 7 (concatenate on one line) */
	filter: progid:DXImageTransform.Microsoft.Shadow(
		Strength=4, Direction=135, Color='#000000');
}</pre>
</blockquote>
<p>I&#8217;m thinking that with some tweaking of the colors I can get what I&#8217;m really after, and this should integrate nicely with some relatively simple JQuery scripting as well.</p>
<p>We shall see&#8230; if it doesn&#8217;t work out I&#8217;ll post a follow-up.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/08/simple-css-cross-browser-drop-shadow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Look</title>
		<link>http://interactivelogic.net/wp/2010/02/new-look/</link>
		<comments>http://interactivelogic.net/wp/2010/02/new-look/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:01:37 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=37</guid>
		<description><![CDATA[I&#8217;ve been experimenting with some new WordPress themes, and I took a shine to DailyPress by Blog Oh Blog! I haven&#8217;t decided if this is going to be the permanent design, but it&#8217;s much better than the old default look I was using, especially with all the links back here regarding the iPhone wireframing templates.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with some new WordPress themes, and I took a shine to <strong><a title="DailyPress Template" href="http://www.blogohblog.com/wordpress-theme-dailypress/" target="_blank">DailyPress</a></strong> by Blog Oh Blog!</p>
<p>I haven&#8217;t decided if this is going to be the permanent design, but it&#8217;s <strong>much </strong>better than the old default look I was using, especially with all the links back here regarding the iPhone wireframing templates.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2010/02/new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

