<?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>Zenovation's Blog &#187; web design</title>
	<atom:link href="http://zenovations.com/blog/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://zenovations.com/blog</link>
	<description>A blog about web design, programming, hosting, and virtualmin hacks</description>
	<lastBuildDate>Mon, 16 Jan 2012 15:01:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Drawing a quote box with css</title>
		<link>http://zenovations.com/blog/2011/11/drawing-a-quote-box-with-css/</link>
		<comments>http://zenovations.com/blog/2011/11/drawing-a-quote-box-with-css/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 20:08:33 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://zenovations.com/blog/?p=263</guid>
		<description><![CDATA[I recently searched El Goog for a way to drawing a quote box with only css and came across several ideas. Nicholas Gallagher had the simplest, and most compatible approach found during my quick surf, in his article titled &#8220;Pure CSS speech bubbles.&#8221; Essentially, his quote box, or speech bubble, came down to the following simple [...]]]></description>
			<content:encoded><![CDATA[<p>I recently searched El Goog for a way to drawing a quote box with only css and came across several ideas. Nicholas Gallagher had the simplest, and most compatible approach found during my quick surf, in his article titled &#8220;<a href="http://nicolasgallagher.com/pure-css-speech-bubbles/demo/">Pure CSS speech bubbles</a>.&#8221;</p>
<p>Essentially, his quote box, or speech bubble, came down to the following simple CSS code (there is no HTML or JS involved) and even works in IE; nice!</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p263code2'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2632"><td class="code" id="p263code2"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.triangle-border</span>.<span style="color: #000000; font-weight: bold;">left</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">30px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
.triangle-<span style="color: #000000; font-weight: bold;">border</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#5A8F00</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#333333</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">3em</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://zenovations.com/blog/2011/11/drawing-a-quote-box-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>making Freeow work with jQuery 1.2.6</title>
		<link>http://zenovations.com/blog/2011/04/making-freeow-work-with-jquery-1-2-6/</link>
		<comments>http://zenovations.com/blog/2011/04/making-freeow-work-with-jquery-1-2-6/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 18:32:53 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://zenovations.com/blog/?p=223</guid>
		<description><![CDATA[Hi, I was able to make this lib work with jQuery 1.2.6 by making only this one-liner change: ?View Code JAVASCRIPT //this.element.hover(this.options.onHover);  this.element.hover&#40;this.options.onHover, this.options.onHover&#41;;]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I was able to make this lib work with jQuery 1.2.6 by making only this one-liner change:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p223code4'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2234"><td class="code" id="p223code4"><pre class="javascript" style="font-family:monospace;">    <span style="color: #006600; font-style: italic;">//this.element.hover(this.options.onHover); </span>
    <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">element</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">options</span>.<span style="color: #660066;">onHover</span><span style="color: #339933;">,</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">options</span>.<span style="color: #660066;">onHover</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://zenovations.com/blog/2011/04/making-freeow-work-with-jquery-1-2-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very Cheap, Really Nice Graphics</title>
		<link>http://zenovations.com/blog/2009/08/very-cheap-really-nice-graphics/</link>
		<comments>http://zenovations.com/blog/2009/08/very-cheap-really-nice-graphics/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 16:11:18 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://zenovations.com/blog/2009/08/very-cheap-really-nice-graphics/</guid>
		<description><![CDATA[It takes a bit of surfing, but you can find some really nice graphics on this site at a fraction of the usual cost: http://graphicriver.net/category/graphics/backgrounds/nature]]></description>
			<content:encoded><![CDATA[<p>It takes a bit of surfing, but you can find some really nice graphics on this site at a fraction of the usual cost: http://graphicriver.net/category/graphics/backgrounds/nature</p>
]]></content:encoded>
			<wfw:commentRss>http://zenovations.com/blog/2009/08/very-cheap-really-nice-graphics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Compilation of CSS Techniques</title>
		<link>http://zenovations.com/blog/2009/08/great-compilation-of-css-techniques/</link>
		<comments>http://zenovations.com/blog/2009/08/great-compilation-of-css-techniques/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 16:09:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://zenovations.com/blog/2009/08/great-compilation-of-css-techniques/</guid>
		<description><![CDATA[This compilation is awesome, covering things like fluid horizontal and vertical layouts, sprites, and many other excellent techniques for CSS: http://www.smashingmagazine.com/2009/07/20/50-new-css-techniques-for-your-next-web-design/]]></description>
			<content:encoded><![CDATA[<p>This compilation is awesome, covering things like fluid horizontal and vertical layouts, sprites, and many other excellent techniques for CSS: http://www.smashingmagazine.com/2009/07/20/50-new-css-techniques-for-your-next-web-design/</p>
]]></content:encoded>
			<wfw:commentRss>http://zenovations.com/blog/2009/08/great-compilation-of-css-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid flash in XHTML (killing &lt;embed&gt;)</title>
		<link>http://zenovations.com/blog/2008/09/valid-flash-in-xhtml-killing-embed/</link>
		<comments>http://zenovations.com/blog/2008/09/valid-flash-in-xhtml-killing-embed/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 21:02:05 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Server]]></category>

		<guid isPermaLink="false">http://zenovations.com/blog/?p=154</guid>
		<description><![CDATA[I wanted to validate my xhtml code for the new site design, and ran into the following fun errors from w3c: Line 25, Column 15: there is no attribute "src". Line 26, Column 18: there is no attribute "wmode". Line 27, Column 17: there is no attribute "type". Line 28, Column 18: there is no [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to <a href="http://validator.w3.org/">validate my xhtml code</a> for the new site design, and ran into the following fun errors from <a href="http://www.w3c.org">w3c</a>:<br />
<code> Line 25, Column 15: there is no attribute "src".<br />
Line 26, Column 18: there is no attribute "wmode".<br />
Line 27, Column 17: there is no attribute "type".<br />
Line 28, Column 18: there is no attribute "width".<br />
Line 28, Column 31: there is no attribute "height".<br />
Line 28, Column 38: element "embed" undefined.<br />
</code><br />
<span id="more-154"></span></p>
<p>Which was caused by this tag, my <a href="http://www.digsby.com">Digsby</a> chat widget:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p154code7'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1547"><td class="code" id="p154code7"><pre class="html" style="font-family:monospace;">&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;190&quot; height=&quot;250&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://w.digsby.com/dw.swf?c=lxogglyphmsfi7xc&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;190&quot; height=&quot;250&quot; src=&quot;http://w.digsby.com/dw.swf?c=lxogglyphmsfi7xc&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</pre></td></tr></table></div>

<p>A little research and <a href="http://www.alistapart.com/stories/flashsatay/">an article from A List Apart later</a>, I&#8217;ve found valid input for including flash in Transitional XHTML:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p154code8'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1548"><td class="code" id="p154code8"><pre class="html" style="font-family:monospace;">&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;190&quot; height=&quot;250&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://w.digsby.com/dw.swf?c=lxogglyphmsfi7xc&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;190&quot; height=&quot;250&quot; src=&quot;http://w.digsby.com/dw.swf?c=lxogglyphmsfi7xc&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://zenovations.com/blog/2008/09/valid-flash-in-xhtml-killing-embed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

