<?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>Blog at veanndesign.com</title>
	<atom:link href="http://blog.veanndesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.veanndesign.com</link>
	<description>Current happenings at veanndesign.com</description>
	<pubDate>Sun, 22 Jun 2008 22:14:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Sunday Weekly Roundup #24 - 6/22/2008</title>
		<link>http://blog.veanndesign.com/2008/06/22/sunday-weekly-roundup-24-6222008/</link>
		<comments>http://blog.veanndesign.com/2008/06/22/sunday-weekly-roundup-24-6222008/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 22:14:12 +0000</pubDate>
		<dc:creator>anna</dc:creator>
		
		<category><![CDATA[Weekly Roundup]]></category>

		<guid isPermaLink="false">http://blog.veanndesign.com/?p=172</guid>
		<description><![CDATA[
CSS

30 CSS Techniques
CSS Gradient Text Effect
Using CSS to fix anything - 20 common bugs and fixes
CSS Support in email clients


Typography

When to use italics
37 Free must have fonts


Browser News

Save the Developers 


ASP.NET

How Do I: Detect Browser Capabilities in ASP.NET Web Pages


Interesting

The Real Online Bookstore


Attractive Websites

Dean Oakley
Pixel Criminals
Brian Webb
nDzynes
My Stock Logo
Project Vino
Justin Delabar


Miscellaneous

Web Development never takes 5 [...]]]></description>
			<content:encoded><![CDATA[<ul class="roundup">
<li>CSS
<ul>
<li><a href="http://sixrevisions.com/css/30_css_techniques_examples/">30 CSS Techniques</a></li>
<li><a href="http://www.webdesignerwall.com/tutorials/css-gradient-text-effect/">CSS Gradient Text Effect</a></li>
<li><a href="http://www.noupe.com/css/using-css-to-fix-anything-20-common-bugs-and-fixes.html">Using CSS to fix anything - 20 common bugs and fixes</a></li>
<li><a href="http://www.campaignmonitor.com/css/">CSS Support in email clients</a></li>
</ul>
</li>
<li>Typography
<ul>
<li><a href="http://cameronmoll.com/archives/2008/06/faq_when_to_use_italics/">When to use italics</a></li>
<li><a href="http://blogof.francescomugnai.com/2008/06/37-free-must-have-fonts/">37 Free must have fonts</a></li>
</ul>
</li>
<li>Browser News
<ul>
<li><a href="http://www.savethedevelopers.org/">Save the Developers </a></li>
</ul>
</li>
<li>ASP.NET
<ul>
<li><a href="http://www.asp.net/learn/videos/video-368.aspx">How Do I: Detect Browser Capabilities in ASP.NET Web Pages</a></li>
</ul>
</li>
<li>Interesting
<ul>
<li><a href="http://zoomii.com/">The Real Online Bookstore</a></li>
</ul>
</li>
<li>Attractive Websites
<ul>
<li><a href="http://deanoakley.com/">Dean Oakley</a></li>
<li><a href="http://www.pixelcriminals.com/">Pixel Criminals</a></li>
<li><a href="http://www.brianwebb.org/">Brian Webb</a></li>
<li><a href="http://ndzynes.com/">nDzynes</a></li>
<li><a href="http://mystocklogo.com/">My Stock Logo</a></li>
<li><a href="http://www.projectvino.com.au/">Project Vino</a></li>
<li><a href="http://www.justindelabar.com/">Justin Delabar</a></li>
</ul>
</li>
<li>Miscellaneous
<ul>
<li><a href="http://imgiseverything.co.uk/2008/06/13/good-freelancing-advice/">Web Development never takes 5 minutes</a></li>
</ul>
</li>
<li>Wordpress
<ul>
<li><a href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html">Wordpress Security Tips and Hacks</a></li>
<li><a href="http://www.hongkiat.com/blog/40-most-wanted-wordpress-tricks-and-hacks/">40+ Most Wanted Wordpress Tricks and Hacks</a></li>
</ul>
</li>
<li>Tutorials
<ul>
<li><a href="http://speckyboy.com/2008/06/12/19-fantastic-web-20-cartoon-character-photoshop-tutorials/">19 Fantastic web 2.0 cartoon characters tutorials</a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.veanndesign.com/2008/06/22/sunday-weekly-roundup-24-6222008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to set container height to 1px in IE6</title>
		<link>http://blog.veanndesign.com/2008/06/16/how-to-set-container-height-to-1px-in-ie6/</link>
		<comments>http://blog.veanndesign.com/2008/06/16/how-to-set-container-height-to-1px-in-ie6/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 17:20:29 +0000</pubDate>
		<dc:creator>anna</dc:creator>
		
		<category><![CDATA[IE6 Bugs]]></category>

		<guid isPermaLink="false">http://blog.veanndesign.com/2008/06/16/how-to-set-container-height-to-1px-in-ie6/</guid>
		<description><![CDATA[If you use clearfix class to clear floated elements throughout your site, you might have been faced with a large gap in IE6 browser, even if you specified 1px height property, like so:
.clearfix { clear:both; height:1px; }
There is a very simple solution for this problem - just add the line-height property.
.clearfix { clear:both; height:1px; line-height:1px; [...]]]></description>
			<content:encoded><![CDATA[<p>If you use clearfix class to clear floated elements throughout your site, you might have been faced with a large gap in IE6 browser, even if you specified 1px height property, like so:</p>
<p><code style="margin-top:15px;">.clearfix { clear:both; height:1px; }</code></p>
<p>There is a very simple solution for this problem - just add the line-height property.</p>
<p><code style="margin-top:15px;">.clearfix { clear:both; height:1px; line-height:1px; }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veanndesign.com/2008/06/16/how-to-set-container-height-to-1px-in-ie6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sunday Weekly Roundup #23 - 06/15/2008</title>
		<link>http://blog.veanndesign.com/2008/06/15/sunday-weekly-roundup-23-06152008/</link>
		<comments>http://blog.veanndesign.com/2008/06/15/sunday-weekly-roundup-23-06152008/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 03:27:29 +0000</pubDate>
		<dc:creator>anna</dc:creator>
		
		<category><![CDATA[Weekly Roundup]]></category>

		<guid isPermaLink="false">http://blog.veanndesign.com/2008/06/15/sunday-weekly-roundup-23-06152008/</guid>
		<description><![CDATA[
Graphic Design

Colour tools, palettes, schemes and theory
Good Books on Design Sketching
CGTextures - Free Textures for Your Sites


Art / Photography

40 Free Stock Photo sites
Beautiful Black and White Photography
Great Art you just don&#8217;t want to miss


Everything Javascript

Learning about the animation abilities of jQuery
jQuery UI 1.5: Effects, API, and Themes


Miscellaneous

Apple&#8217;s MobileMe drops support for IE 6


Tools

15 Tools to [...]]]></description>
			<content:encoded><![CDATA[<ul class="roundup">
<li>Graphic Design
<ul>
<li><a href="http://www.davidairey.com/colour-tools-palettes-theory/">Colour tools, palettes, schemes and theory</a></li>
<li><a href="http://www.designsojourn.com/good-books-on-design-sketching/">Good Books on Design Sketching</a></li>
<li><a href="http://www.webappers.com/2008/06/15/cgtextures-free-textures-for-your-sites/">CGTextures - Free Textures for Your Sites</a></li>
</ul>
</li>
<li>Art / Photography
<ul>
<li><a href="http://www.webmaster-source.com/2008/06/09/40-free-stock-photo-sites/">40 Free Stock Photo sites</a></li>
<li><a href="http://www.smashingmagazine.com/2008/06/09/beautiful-black-and-white-photography/">Beautiful Black and White Photography</a></li>
<li><a href="http://creativecurio.com/2008/06/great-art-you-just-dont-want-to-miss/">Great Art you just don&#8217;t want to miss</a></li>
</ul>
</li>
<li>Everything Javascript
<ul>
<li><a href="http://www.detacheddesigns.com/blog/blogSpecific.aspx?BlogId=78">Learning about the animation abilities of jQuery</a></li>
<li><a href="http://ajaxian.com/archives/jquery-ui-15-effects-api-and-themes">jQuery UI 1.5: Effects, API, and Themes</a></li>
</ul>
</li>
<li>Miscellaneous
<ul>
<li><a href="http://www.37signals.com/svn/posts/1072-apples-mobileme-drops-support-for-ie-6">Apple&#8217;s MobileMe drops support for IE 6</a></li>
</ul>
</li>
<li>Tools
<ul>
<li><a href="http://sixrevisions.com/tools/faster_web_page/">15 Tools to Help You Develop Faster Web Pages</a></li>
</ul>
</li>
<li>Interviews
<ul>
<li><a href="http://vandelaydesign.com/blog/design/group-interview/">Web/Graphic Designer Group Interview</a></li>
</ul>
</li>
<li>Tutorials
<ul>
<li><a href="http://designreviver.com/tutorials/create-an-interactive-stack-of-photos">Create an Interactive Stack of Photos</a></li>
</ul>
</li>
<li>Attractive Websites
<ul>
<li><a href="http://www.elwebmaster.com/">elWebmaster</a></li>
</ul>
</li>
<li>Interesting
<ul>
<li><a href="http://www.youtube.com/user/reelgeezers">ReelGeezers</a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.veanndesign.com/2008/06/15/sunday-weekly-roundup-23-06152008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sunday Weekly Roundup #22 - 06/08/2008</title>
		<link>http://blog.veanndesign.com/2008/06/08/sunday-weekly-roundup-22-06082008/</link>
		<comments>http://blog.veanndesign.com/2008/06/08/sunday-weekly-roundup-22-06082008/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 01:46:03 +0000</pubDate>
		<dc:creator>anna</dc:creator>
		
		<category><![CDATA[Weekly Roundup]]></category>

		<guid isPermaLink="false">http://blog.veanndesign.com/2008/06/08/sunday-weekly-roundup-22-06082008/</guid>
		<description><![CDATA[After a somewhat extended break from weekly roundup postings, I am back on track. 

Design

Become a better designer by copying successful designs - an excellent write-up with great examples by LaurenMarie over at Creative Curio
Free ecommerce icons
101 Color Resources for Web Designers


Javascript (Ajax, jquery, etc)

Learning jQuery: A roundup roundup
Coda Slider Effect
jQuery examples - horizontal accordion
The [...]]]></description>
			<content:encoded><![CDATA[<p>After a somewhat extended break from weekly roundup postings, I am back on track. </p>
<ul class="roundup">
<li>Design
<ul>
<li><a href="http://creativecurio.com/2008/06/become-a-better-designer-by-copying-successful-design/">Become a better designer by copying successful designs</a> - an excellent write-up with great examples by LaurenMarie over at <a href="http://creativecurio.com/">Creative Curio</a></li>
<li><a href="http://www.starfishwebconsulting.co.uk/ecommerce-icons">Free ecommerce icons</a></li>
<li><a href="http://whdb.com/2008/follow-the-rainbow-101-color-resources-for-web-designers/">101 Color Resources for Web Designers</a></li>
</ul>
</li>
<li>Javascript (Ajax, jquery, etc)
<ul>
<li><a href="http://css-tricks.com/learning-jquery-a-roundup-roundup/">Learning jQuery: A roundup roundup</a></li>
<li><a href="http://jqueryfordesigners.com/coda-slider-effect/">Coda Slider Effect</a></li>
<li><a href="http://designreviver.com/tutorials/jquery-examples-horizontal-accordion">jQuery examples - horizontal accordion</a></li>
<li><a href="http://enhance.qd-creative.co.uk/index.php/2008/javascript/the-awesomeness-of-jquery">The Awesomeness of jQuery</a></li>
<li><a href="http://enhance.qd-creative.co.uk/index.php/2008/javascript/jquery-secrets">jQuery Secrets</a></li>
</ul>
</li>
<li>CSS
<ul>
<li><a href="http://www.standardsforlife.com/override-inline-styles-from-the-stylesheet/">Override Inline styles from the Stylesheet</a></li>
<li><a href="http://meiert.com/en/indices/css-properties/">CSS Properties Index</a></li>
</ul>
</li>
<li>Attractive Websites
<ul>
<li><a href="http://webdesignbeach.com">Web Design Beach<br />
<img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/wdbeach.thumbnail.jpg' alt='wdbeach.jpg' /></a></li>
<li><a href="http://brightcreative.com/">Bright Creative<br />
<img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/brightcreative.thumbnail.jpg' alt='brightcreative.jpg' /></a></li>
<li><a href="http://www.thiscountryboy.com/">This Country Boy<br /><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/thiscountryboy.thumbnail.jpg' alt='thiscountryboy.jpg' /></a></li>
<li><a href="http://andrewbradshaw.com/">Andrew Bradshaw<br /><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/anrewbradshaw.thumbnail.jpg' alt='anrewbradshaw.jpg' /></a></li>
<li><a href="http://www.studio7designs.com/">Studio 7 Designs<br /><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/studio7.thumbnail.jpg' alt='studio7.jpg' /></a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.veanndesign.com/2008/06/08/sunday-weekly-roundup-22-06082008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 Programs/Applications I use on a daily basis</title>
		<link>http://blog.veanndesign.com/2008/06/08/5-programsapplications-i-use-on-a-daily-basis/</link>
		<comments>http://blog.veanndesign.com/2008/06/08/5-programsapplications-i-use-on-a-daily-basis/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 17:49:30 +0000</pubDate>
		<dc:creator>anna</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.veanndesign.com/2008/06/08/5-programsapplications-i-use-on-a-daily-basis/</guid>
		<description><![CDATA[
 Photoshop
 Visual Studio 2008
 Firefox
 Google Reader
 Outlook

What are yours?
]]></description>
			<content:encoded><![CDATA[<ol>
<li><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/pslogo.jpg' alt='pslogo.jpg' /> Photoshop</li>
<li><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/vslogo.jpg' alt='vslogo.jpg' /> Visual Studio 2008</li>
<li><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/fflogo.jpg' alt='fflogo.jpg' /> Firefox</li>
<li><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/googlereaderlogo.jpg' alt='googlereaderlogo.jpg' /> Google Reader</li>
<li><img src='http://blog.veanndesign.com/wp-content/uploads/2008/06/outlooklogo.jpg' alt='outlooklogo.jpg' /> Outlook</li>
</ol>
<p>What are yours?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veanndesign.com/2008/06/08/5-programsapplications-i-use-on-a-daily-basis/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
