<?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"
	>

<channel>
	<title>DesignerFied.com</title>
	<atom:link href="http://designerfied.com/feed" rel="self" type="application/rss+xml" />
	<link>http://designerfied.com</link>
	<description>Taking a unique approach to web design. Offering free custom website/wordpress themes, photography and other goodies.</description>
	<pubDate>Sat, 06 Sep 2008 09:43:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Free Skull Brushes For Photoshop</title>
		<link>http://designerfied.com/free-skull-brushes-for-photoshop.html</link>
		<comments>http://designerfied.com/free-skull-brushes-for-photoshop.html#comments</comments>
		<pubDate>Thu, 04 Sep 2008 15:52:37 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Free Brushes]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=339</guid>
		<description><![CDATA[I whipped up some skull brushes for you all. This is my first try at photoshop brushes so I hope they are ok. I have tons of cool stuff that I am going to make brushes out of so keep checking back.

 Right click and save as
Skulls By Designerfied
]]></description>
			<content:encoded><![CDATA[<p>I whipped up some skull brushes for you all. This is my first try at photoshop brushes so I hope they are ok. I have tons of cool stuff that I am going to make brushes out of so keep checking back.<br />
<span id="more-339"></span></p>
<p><strong> Right click and save as</strong><br />
<a href="http://designerfied.com/wp-content/uploads/2008/09/skulls-by-designerfiedcom.abr">Skulls By Designerfied</a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/free-skull-brushes-for-photoshop.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Customize Dynamic Drive&#8217;s Featured Content Slider</title>
		<link>http://designerfied.com/how-to-customize-dynamic-drives-featured-content-slider.html</link>
		<comments>http://designerfied.com/how-to-customize-dynamic-drives-featured-content-slider.html#comments</comments>
		<pubDate>Sun, 31 Aug 2008 01:50:01 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Dhtml]]></category>

		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=308</guid>
		<description><![CDATA[Yesterday I added Dynamic Drive&#8217;s Featured Content Slider v2.4 to one of our sites. This script was very easy to install and customize so I decided to share with you how I did it. Basically I made it transparent with PNG images.

Fist off you need to head over to Dynamic Drive and download the files [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I added <a href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentslider.htm" target="_blank">Dynamic Drive&#8217;s Featured Content Slider v2.4</a> to one of our sites. This script was very easy to install and customize so I decided to share with you how I did it. Basically I made it transparent with PNG images.</p>
<p><span id="more-308"></span></p>
<p>Fist off you need to head over to <a href="http://www.dynamicdrive.com/" target="_blank">Dynamic Drive</a> and download the files that you need <a href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentslider.htm" target="_blank">Featured Content Slider v2.4.</a></p>
<p>Seconded you need to ether make your own transparent PNG images or you can go <a href="http://css-tricks.com/free-pngs-for-creating-transparent-fills/">here</a> and use the images I used for this project.</p>
<p><a href="http://designerfied.com/slider-demo.html"><strong>See a live demo</strong></a></p>
<p><strong>Now lets </strong><strong>quick </strong><strong>look at the stock CSS code.</strong></p>
<blockquote><p><span style="color: #ccffcc;">.sliderwrapper{<br />
position: relative; /*leave as is*/<br />
overflow: hidden; /*leave as is*/<br />
border: 10px solid navy;<br />
border-bottom-width: 6px;<br />
width: 400px; /*width of featured content slider*/<br />
height: 250px;<br />
}</span></p>
<p><span style="color: #ccffcc;">.sliderwrapper .contentdiv{<br />
visibility: hidden; /*leave as is*/<br />
position: absolute; /*leave as is*/<br />
left: 0;  /*leave as is*/<br />
top: 0;  /*leave as is*/<br />
padding: 5px;<br />
background: white;<br />
width: 390px; /*width of content DIVs within slider. Total width should equal slider&#8217;s inner width (390+5+5=400) */<br />
height: 100%;<br />
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);<br />
-moz-opacity: 1;<br />
opacity: 1;<br />
}</span></p>
<p><span style="color: #ccffcc;">.pagination{<br />
width: 400px; /*Width of pagination DIV. Total width should equal slider&#8217;s outer width (400+10+10=420)*/<br />
text-align: right;<br />
background-color: navy;<br />
padding: 5px 10px;<br />
}</span></p>
<p><span style="color: #ccffcc;">.pagination a{<br />
padding: 0 5px;<br />
text-decoration: none;<br />
color: #00007D;<br />
background: white;<br />
}</span></p>
<p><span style="color: #ccffcc;">.pagination a:hover, .pagination a.selected{<br />
color: #000;<br />
background-color: #FEE496;<br />
}</span></p></blockquote>
<p>To add a transparent border around the content slider you can do this. Note: I made the featured content slider smaller for this project.</p>
<p>Remove this:<br />
border: 10px solid navy;</p>
<p>Add this:<br />
background: url(/images/transpBlue10.png) repeat;<br />
padding:2px</p>
<p>So the code should look like this:</p>
<blockquote><p>.sliderwrapper{<br />
position: relative; /*leave as is*/<br />
overflow: hidden; /*leave as is*/<br />
background: url(/images/transpBlue10.png) repeat;<br />
border-bottom-width: 6px;<br />
width: 335px; /*width of featured content slider*/<br />
height: 200px;<br />
padding:2px<br />
}</p></blockquote>
<p>Next step is to edit the content area.</p>
<p>You will need to add this:<br />
border: 1px solid #DDD;<br />
margin: 4px 0 0 5px;<br />
padding: 2px;</p>
<p>So the code will look like this:</p>
<blockquote><p>.sliderwrapper .contentdiv{<br />
visibility: hidden; /*leave as is*/<br />
position: absolute; /*leave as is*/<br />
left: 0;  /*leave as is*/<br />
top: 0;  /*leave as is*/<br />
margin: 4px 0 0 5px;<br />
padding: 2px;<br />
background: #FFF;<br />
border: 1px solid #DDD;<br />
width: 322px; /*width of content DIVs within slider. Total width should equal slider&#8217;s inner width (390+5+5=400) */<br />
height: 100%;<br />
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);<br />
-moz-opacity: 1;<br />
opacity: 1;<br />
}</p></blockquote>
<p>Now we will edit the look of the pagination DIV.</p>
<p>Remove this:<br />
background-color: navy;<br />
width: 400px;</p>
<p>Add this:<br />
width: 419px;<br />
background: url(/images/transpBlue10.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p>.pagination{<br />
width: 319px; /*Width of pagination DIV. Total width should equal slider&#8217;s outer width (400+10+10=420)*/<br />
text-align: right;<br />
background: url(/images/transpBlue10.png) repeat;<br />
padding: 5px 10px;<br />
}</p></blockquote>
<p>Almost done! The last step is adding a effect to the pagination links.</p>
<p>Remove this:<br />
color: #00007D;<br />
background: white;</p>
<p>Add this:<br />
color: #FFF;<br />
background: url(/images/transpBlue25.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p>.pagination a{<br />
padding: 0 5px;<br />
text-decoration: none;<br />
color: #FFF;<br />
background: url(/images/transpBlue25.png) repeat;<br />
}</p></blockquote>
<p>Finish it off with a hover effect.</p>
<p>Remove this:<br />
color: #000;<br />
background-color: #FEE496;</p>
<p>Add this:<br />
color: #EEE;<br />
background: url(/images/transpBlue75.png) repeat;</p>
<p>So the code will look like this:</p>
<blockquote><p>.pagination a:hover, .pagination a.selected{<br />
color: #EEE;<br />
background: url(/images/transpBlue75.png) repeat;<br />
}</p></blockquote>
<p>Here is the CSS file:<br />
<a href="http://designerfied.com/css/contentslider.css">contentslider.css</a></p>
<p>Here are the PNGs from this project.</p>
<p><a href="http://designerfied.com/wp-content/uploads/2008/09/transpblue75.png"><img class="alignnone size-medium wp-image-330" title="transpblue75" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue75.png" alt="" width="50" height="50" border="0" /></a> <a href="http://designerfied.com/wp-content/uploads/2008/09/transpblue50.png"><img class="alignnone size-medium wp-image-329" title="transpblue50" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue50.png" alt="" width="50" height="50" border="0" /></a> <a href="http://designerfied.com/wp-content/uploads/2008/09/transpblue25.png"><img class="alignnone size-medium wp-image-328" title="transpblue25" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue25.png" alt="" width="50" height="50" border="0" /></a> <a href="http://designerfied.com/wp-content/uploads/2008/09/transpblue10.png"><img class="alignnone size-medium wp-image-327" title="transpblue10" src="http://designerfied.com/wp-content/uploads/2008/09/transpblue10.png" alt="" border="0" width="50" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/how-to-customize-dynamic-drives-featured-content-slider.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mount Saint Helens Desktop Wallpaper</title>
		<link>http://designerfied.com/mount-saint-helens-desktop-wallpaper.html</link>
		<comments>http://designerfied.com/mount-saint-helens-desktop-wallpaper.html#comments</comments>
		<pubDate>Mon, 25 Aug 2008 09:50:35 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=297</guid>
		<description><![CDATA[Every time I step out my front door I see this very live mountain, when its not raining of course. Its weird to think that that thing could blow any time. Every time I look at it I have fond memory&#8217;s of when I was a kid hunting and fishing around it. So I decided [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I step out my front door I see this very live mountain, when its not raining of course. Its weird to think that that thing could blow any time. Every time I look at it I have fond memory&#8217;s of when I was a kid hunting and fishing around it. So I decided to make a free desktop wallpaper for you all.</p>
<p><span id="more-297"></span></p>
<p>I have only had the LucisArt plugin for PS for a few days now so I am still learning how to use it. Hope you like it!!</p>
<p><strong>Tools Used: </strong>Photoshop CS3 and the LucisArt Plugin</p>
<p><a href="http://designerfied.com/wp-content/uploads/2008/08/sth-08wallpaper.jpg"><img class="alignnone size-medium wp-image-305" title="sth-08wallpaper" src="http://designerfied.com/wp-content/uploads/2008/08/sth-08wallpaper-400x300.jpg" alt="" width="490" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/mount-saint-helens-desktop-wallpaper.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Smart Mootools Tooltips</title>
		<link>http://designerfied.com/smart-mootools-tool-tips.html</link>
		<comments>http://designerfied.com/smart-mootools-tool-tips.html#comments</comments>
		<pubDate>Sun, 24 Aug 2008 16:15:22 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[MooTools]]></category>

		<category><![CDATA[tooltips]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=286</guid>
		<description><![CDATA[Tool tips with Mootools just got even more cooler! Check it out, its called Smart Hover Box. You can add a hover html elements to any other element by adding a single id.

Smart Hover Box Features:

create a hover box out of any html element
smart positioning will always show hover box in window quadrant with the [...]]]></description>
			<content:encoded><![CDATA[<p>Tool tips with Mootools just got even more cooler! Check it out, its called Smart Hover Box. You can add a hover html elements to any other element by adding a single id.</p>
<p><span id="more-286"></span></p>
<p style="text-align: left;"><strong>Smart Hover Box </strong><strong>Features:</strong></p>
<ul style="text-align: left;">
<li>create a hover box out of any html element</li>
<li>smart positioning will always show hover box in window quadrant with the most space</li>
<li>optional close button by adding a user defined class to any element</li>
<li>user defined x and y hover element offset</li>
<li>user defined timeout after mouseleave event</li>
</ul>
<p style="text-align: left;"><strong>Link:</strong> <a href="http://www.consideropen.com/blog/2008/08/smart-hover-box-for-mootools-12/" target="_blank">http://www.consideropen.com/blog/2008/08/smart-hover-box-for-mootools-12/</a></p>
<p><a href="http://designerfied.com/wp-content/uploads/2008/08/smart-hover-box.jpg"><img class="alignnone size-medium wp-image-287" title="smart-hover-box" src="http://designerfied.com/wp-content/uploads/2008/08/smart-hover-box.jpg" alt="" width="473" height="262" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/smart-mootools-tool-tips.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Motorcycle Rider Wallpaper</title>
		<link>http://designerfied.com/motorcycle-rider-wallpaper.html</link>
		<comments>http://designerfied.com/motorcycle-rider-wallpaper.html#comments</comments>
		<pubDate>Sun, 24 Aug 2008 09:22:43 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Photoshop]]></category>

		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=280</guid>
		<description><![CDATA[This picture was taken at one of PIR&#8217;s track days last year. I was messing around today and decided to make a wallpaper out of it. I figured someone might want to use it, so enjoy! 

]]></description>
			<content:encoded><![CDATA[<p>This picture was taken at one of PIR&#8217;s track days last year. I was messing around today and decided to make a wallpaper out of it. I figured someone might want to use it, so enjoy! <a href="http://bikerpunks.com/" target="_blank"></a></p>
<p><a href="http://designerfied.com/wp-content/uploads/2008/08/pir_bikerpunks-wallpaper.jpg"><img class="alignnone size-medium wp-image-282" title="pir_bikerpunks-wallpaper" src="http://designerfied.com/wp-content/uploads/2008/08/pir_bikerpunks-wallpaper-440x300.jpg" alt="" width="490" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/motorcycle-rider-wallpaper.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Drawbridge</title>
		<link>http://designerfied.com/the-drawbridge.html</link>
		<comments>http://designerfied.com/the-drawbridge.html#comments</comments>
		<pubDate>Fri, 22 Aug 2008 01:44:26 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=273</guid>
		<description><![CDATA[This is a bridge I visited last spring in the Dalles OR. This picture was edited with Photoshop to bring out some of the colors. If you are new to Photoshop I highly recomend the LucisArt plugin!


]]></description>
			<content:encoded><![CDATA[<p>This is a bridge I visited last spring in the Dalles OR. This picture was edited with Photoshop to bring out some of the colors. If you are new to Photoshop I highly recomend the LucisArt plugin!</p>
<p><span id="more-273"></span></p>
<p><a href="http://designerfied.com/wp-content/uploads/2008/08/the-bridge2.jpg"><img class="alignnone size-medium wp-image-274" title="http://designerfied.com/wp-content/uploads/2008/08/the-bridge1.jpg" src="http://designerfied.com/wp-content/uploads/2008/08/the-bridge1.jpg" alt="" width="490" height="303" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/the-drawbridge.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Image Metrics Sets a New precedent for photo-realistic characters</title>
		<link>http://designerfied.com/image-metrics-set-a-new-precedent-for-photo-realistic-characters.html</link>
		<comments>http://designerfied.com/image-metrics-set-a-new-precedent-for-photo-realistic-characters.html#comments</comments>
		<pubDate>Thu, 21 Aug 2008 10:36:14 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=268</guid>
		<description><![CDATA[Emily the woman in the animation is one of the most realistic animation characters I have ever seen! The future for games and movies is going to be amazing. Just watch this and see for your self.


Full story here: http://technology.timesonline.co.uk/tol/news/tech_and_web/article4557935.ece 
]]></description>
			<content:encoded><![CDATA[<p>Emily the woman in the animation is one of the most realistic animation characters I have ever seen! The future for games and movies is going to be amazing. Just watch this and see for your self.<br />
<span id="more-268"></span><br />
<embed src="http://angermedia.com/mediaplayer.swf" width="500" height="375" allowfullscreen="true" allowscriptaccess="always" flashvars="&#038;file=http://designerfied.com/wp-content/uploads/2008/08/azimagemetrics3_300.flv&#038;height=375&#038;width=490&#038;frontcolor=0xFFFFFF&#038;backcolor=0x000000&#038;lightcolor=0x333333&#038;autostart=true" /></p>
<p><strong>Full story here:</strong> <a href="Full story here: http://technology.timesonline.co.uk/tol/news/tech_and_web/article4557935.ece ">http://technology.timesonline.co.uk/tol/news/tech_and_web/article4557935.ece </a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/image-metrics-set-a-new-precedent-for-photo-realistic-characters.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>10 Brilliant Custom Wallpapers For Your Desktop</title>
		<link>http://designerfied.com/10-brilliant-custom-wallpapers-for-your-desktop.html</link>
		<comments>http://designerfied.com/10-brilliant-custom-wallpapers-for-your-desktop.html#comments</comments>
		<pubDate>Sat, 16 Aug 2008 01:51:53 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=254</guid>
		<description><![CDATA[I am always looking around for cool ways to spice up my desktop so I thought I would share some of my favorite wallpapers that I have found, I hope you enjoy them as much as I did.  FYI, I am working on a few to share with you all so if your interested stay [...]]]></description>
			<content:encoded><![CDATA[<p>I am always looking around for cool ways to spice up my desktop so I thought I would share some of my favorite wallpapers that I have found, I hope you enjoy them as much as I did.  FYI, I am working on a few to share with you all so if your interested stay tuned.</p>
<p><span id="more-254"></span></p>
<p><a href="http://aysegulfersah.deviantart.com/art/wallpaper-94959075" target="_blank"><img class="alignnone size-medium wp-image-255" title="wallpaper_by_aysegulfersah" src="http://designerfied.com/wp-content/uploads/2008/08/wallpaper_by_aysegulfersah-478x300.jpg" alt="" width="490" height="307" /></a></p>
<p><a href="http://welshdragon.deviantart.com/art/Even-In-The-Quietest-Moment-94947449" target="_blank"><img class="alignnone size-full wp-image-256" title="even_in_the_quietest_moment_by_welshdragon" src="http://designerfied.com/wp-content/uploads/2008/08/even_in_the_quietest_moment_by_welshdragon.jpg" alt="" width="490" height="368" /></a></p>
<p><a href="http://id0nt.deviantart.com/art/Straw-berry-94961428" target="_blank"><img class="alignnone size-full wp-image-257" title="straw_berry_by_id0nt" src="http://designerfied.com/wp-content/uploads/2008/08/straw_berry_by_id0nt.jpg" alt="" width="490" height="368" /></a></p>
<p><a href="http://id0nt.deviantart.com/art/Straw-berry-94961428" target="_blank"><img class="alignnone size-medium wp-image-258" title="__cream___wallpaper_by_t3ardr0p" src="http://designerfied.com/wp-content/uploads/2008/08/__cream___wallpaper_by_t3ardr0p-480x300.jpg" alt="" width="490" height="306" /></a></p>
<p><a href="http://betahouse.deviantart.com/art/West-Coast-Customs-on-concrete-94992640" target="_blank"><img class="alignnone size-full wp-image-259" title="west_coast_customs_on_concrete_by_betahouse" src="http://designerfied.com/wp-content/uploads/2008/08/west_coast_customs_on_concrete_by_betahouse.jpg" alt="" width="490" height="306" /></a></p>
<p><a href="http://donut-boy-gfx.deviantart.com/art/Kobe-Bryant-wallpaper-94992685" target="_blank"><img class="alignnone size-full wp-image-260" title="kobe_bryant_wallpaper_by_donut_boy_gfx" src="http://designerfied.com/wp-content/uploads/2008/08/kobe_bryant_wallpaper_by_donut_boy_gfx.jpg" alt="" width="490" height="306" /></a></p>
<p><a href="http://tienod.deviantart.com/art/Donau-Au-3-94918332" target="_blank"><img class="alignnone size-full wp-image-261" title="donau_au_3_by_tienod" src="http://designerfied.com/wp-content/uploads/2008/08/donau_au_3_by_tienod.jpg" alt="" width="490" height="307" /></a></p>
<p><a href="http://surag.deviantart.com/art/Surreal-94949512" target="_blank"><img class="alignnone size-full wp-image-262" title="surreal_by_surag" src="http://designerfied.com/wp-content/uploads/2008/08/surreal_by_surag.jpg" alt="" width="490" height="306" /></a></p>
<p><a href="http://little-bunny-foo-foo.deviantart.com/art/What-I-Want-94906030" target="_blank"><img class="alignnone size-full wp-image-263" title="what_i_want_by_little_bunny_foo_foo" src="http://designerfied.com/wp-content/uploads/2008/08/what_i_want_by_little_bunny_foo_foo.jpg" alt="" width="490" height="306" /></a></p>
<p><a href="http://brewhizz.deviantart.com/art/Lamborghini-Gallardo-94921443" target="_blank"><img class="alignnone size-full wp-image-264" title="lamborghini_gallardo_by_brewhizz" src="http://designerfied.com/wp-content/uploads/2008/08/lamborghini_gallardo_by_brewhizz.jpg" alt="" width="490" height="312" /></a></p>
<p>I know whats custom about that car? Nothing, I just love it!!</p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/10-brilliant-custom-wallpapers-for-your-desktop.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Dane Cook Doesn&#8217;t Like His Movie Poster Design</title>
		<link>http://designerfied.com/dane-cook-doesnt-like-his-movie-poster-design.html</link>
		<comments>http://designerfied.com/dane-cook-doesnt-like-his-movie-poster-design.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 04:12:54 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=247</guid>
		<description><![CDATA[Read what Dane has to say about.  Maybe I will post up a Top 5 Crappiest Movie Posters Ever.

Dane Cook: Here are a few things that truly blow about my upcoming movie poster to promote the release of the film opening on September 19th:
1. Graphics:
Whoever photoshopped our poster must have done so at taser point [...]]]></description>
			<content:encoded><![CDATA[<p>Read what Dane has to say about.  Maybe I will post up a Top 5 Crappiest Movie Posters Ever.</p>
<p><span id="more-247"></span></p>
<p><strong>Dane Cook:</strong> Here are a few things that truly blow about my upcoming movie poster to promote the release of the film opening on September 19th:</p>
<p>1. Graphics:<br />
Whoever photoshopped our poster must have done so at taser point with<br />
3 minutes to fulfill their hostage takers deranged obligations. They should have called Donnie Hoyle and had him give a tutorial using &#8220;You Suck at Photoshop&#8221; templates. This is so glossy it makes Entertainment Weekly look wooden.<br />
2. My head:</p>
<p>The left side of my face seems to be melting off of my skull. I guess I am looking directly into the Ark of the Covenant? Are they going for the bells palsy thing here? My left side looks like Britney Spears <a href="http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;friendID=469452&amp;blogID=423389935" target="_blank">Read More</a><br />
<a href="http://blog.myspace.com/index.cfm?fuseaction=blog.view&amp;friendID=469452&amp;blogID=423389935" target="_blank"><img class="alignnone size-full wp-image-248" title="danecook" src="http://designerfied.com/wp-content/uploads/2008/08/danecook.jpg" alt="" width="410" height="608" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/dane-cook-doesnt-like-his-movie-poster-design.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Could be The Simplest jQuery Tooltip Ever</title>
		<link>http://designerfied.com/could-be-the-simplest-jquery-tooltip-ever.html</link>
		<comments>http://designerfied.com/could-be-the-simplest-jquery-tooltip-ever.html#comments</comments>
		<pubDate>Tue, 12 Aug 2008 07:43:53 +0000</pubDate>
		<dc:creator>jake</dc:creator>
		
		<category><![CDATA[Featured Designs]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[Links]]></category>

		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://designerfied.com/?p=237</guid>
		<description><![CDATA[That&#8217;s right, this is probably the easiest way to add tooltips to your site. What I really like about this is that you can add a tooltip a link and when you hover over it you will see a screenshot of that link.

Link: http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery 
Demo1: http://cssglobe.com/lab/tooltip/01/
Demo2: http://cssglobe.com/lab/tooltip/02/
Demo3: http://cssglobe.com/lab/tooltip/03/
]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, this is probably the easiest way to add tooltips to your site. What I really like about this is that you can add a tooltip a link and when you hover over it you will see a screenshot of that link.</p>
<p><a href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank"><img class="alignnone size-medium wp-image-238" title="easy-jquery-tooltips" src="http://designerfied.com/wp-content/uploads/2008/08/easy-jquery-tooltips-490x246.jpg" alt="" width="490" height="246" /><span id="more-237"></span></a></p>
<p><strong>Link:</strong> <a href="http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery" target="_blank">http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery </a></p>
<p><strong>Demo1:</strong> <a href="http://cssglobe.com/lab/tooltip/01/" target="_blank">http://cssglobe.com/lab/tooltip/01/</a></p>
<p><strong>Demo2:</strong> <a href="http://cssglobe.com/lab/tooltip/02/" target="_blank">http://cssglobe.com/lab/tooltip/02/</a></p>
<p><strong>Demo3:</strong> <a href="http://cssglobe.com/lab/tooltip/03/" target="_blank">http://cssglobe.com/lab/tooltip/03/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://designerfied.com/could-be-the-simplest-jquery-tooltip-ever.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
