
<?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>CSSJuice</title>
	<atom:link href="http://www.cssjuice.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssjuice.com</link>
	<description>Just another DevWebPro Network site</description>
	<lastBuildDate>Fri, 23 Sep 2011 13:08:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Rounded Corners Using CSS</title>
		<link>http://www.cssjuice.com/rounded-corners-using-css/</link>
		<comments>http://www.cssjuice.com/rounded-corners-using-css/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 08:08:18 +0000</pubDate>
		<dc:creator>Derald</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Rounded Corners]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/rounded-corners-using-css/</guid>
		<description><![CDATA[One of the more popular things to do with CSS is to have elements with rounded corners. Some designers have even called this the holy grail of CSS. It is also one of those design elements that give your site a sophisticated and professional look. Most designers will tell you &#8230;]]></description>
			<content:encoded><![CDATA[<p>One of the more popular things to do with CSS is to have elements with rounded corners.  Some designers have even called this the holy grail of CSS.  It is also one of those design elements that give your site a sophisticated and professional look.  Most designers will tell you to achieve this look it is hard work, well don&#8217;t fear we can achieve the same look with a few lines of CSS.</p>
<p>First, we have to create four images which will create the rounded effect.   The images should have a transparent background, but have a rounded edge effect with the color of your site background.   Here is an example of the rounded images we used with a black background instead of a transparent one.</p>
<p><img src="http://images.ientry.com/cssjuice/rounded/corner_example.gif" border="1" alt="Rounded Corner -- Example" width="50" height="50" /><br />
<span id="more-5169"></span><br />
With the images now created, we can start looking at the CSS code to create the effect.  Since we only want the effect on elements that we choose to apply it to, we will need to create a class for the effect.  Lets call this class round.  You can name the class anything you would like, but it is best to try to keep it simple but descriptive.  We will need to use the images that we created, and we are going to use them as background images.  This means we are at least going to use the background attribute in CSS.  In order to use the images, we are going to also have to tell the CSS code where the images are located, to do this we will use url().   So far, our CSS should look like the following.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round{<br />
background: url(images/top_right.gif);<br />
}</p>
<p>So far the CSS is simple, but we already have ran into an issue.  If we were to use this CSS, we will have the image top_right.gif repeat, to create the rounded corners we do not want this to happen.  We have to add additional values to the background attribute to stop the image from repeating.  To do this, just add no-repeat after the url() but before the semi colon.  Another issue that we have ran into is that the background starts in the top left corner, but this is the image for the top right corner.  To solve this we need to add &#8220;top right&#8221; after the no-repeat value.  With the added values the CSS code should look like the following now.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round{<br />
background: url(images/top_right.gif) no-repeat top right;<br />
}</p>
<p>If we were to apply this style sheet to an element at this point it would just have one rounded corner.   In order to get the top left corner rounded, we have to add a few things to the code, first we need to add the pseudo-element :before.  (Note that Internet Explorer does not support the :before and :after pseudo-elements, and the effect will not appear for Internet Explorer users.) This will apply the style before any element that is in the round element.  Another reason that the pseudo-element is needed, is because we have to use the content attribute.  The content attribute can only be used with the pseudo-elements :before and :after.  This attribute allows us to &#8220;float&#8221; the image for the rounded top left corner into the correct position.  Again to do this we are going to use the url() value.  Here is what the style sheet now looks like with all of this added.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round:before{<br />
background: url(images/top_right.gif) no-repeat top right;<br />
content: url(images/top_left.gif)<br />
}</p>
<p>Here again we run into another issue, this code will only make a semi circle instead of a round effect that we want to overcome this issue, we will only need to add the display attribute and set the value to block.  Here is the final style to round both top corners.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round:before{<br />
background: url(&#8216;images/top_right.gif&#8217;) no-repeat top right;<br />
display: block;<br />
content: url(images/top_left.gif)<br />
}</p>
<p>Now, if we put any element into the class round, the top two corners will have a rounded effect.  To have the bottom corners rounded we only need to change a few things in the code itself.  We have to change the images that we are using, and change the pseudo-element from :before to :after.  Below is what the style sheet looks like to give the effect to the bottom corners.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round:after{<br />
background: url(&#8216;images/bottom_right.gif&#8217;) no-repeat top right;<br />
display: block;<br />
content: url(images/bottom_left.gif)<br />
}</p>
<p>Now, to style the element that we are putting in the round class.  If we were using this in an actual site then we would create an id.  We would then give the element the id, and class.  Remember that ids are used for one element, where classes are used for multiple elements.  If you were wanting all of the element with rounded corners to have the same look, then use a class.  In this example we are going to use both. So lets start with the round class.  Lets make this class 350 pixels wide with a background that is a shade of grey.  Here is the CSS code for that.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round{<br />
background: #DCDCDC;<br />
width: 350px;<br />
}</p>
<p>For the id, we will name it corners, and lets make it 150 pixels wide, with a dark green background.  We also want the text to be bold and white.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">#corners{<br />
background: #2F4F4F;<br />
width: 150;<br />
color: #FFFFFF;<br />
font-weight: bold;<br />
}</p>
<p>That is it for the CSS to create this effect.  Lets move on an look at the HTML part of the code.</p>
<p><!--Next Page--></p>
<p>Most of the HTML to create the rounded corner effect is very basic, we are just going to apply a class to the element.  As we stated before, we can also apply an id to the element to create an even more custom feel for each element.  Below is an example of both ways.</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">&lt;div class=&#8221;round&#8221;&gt;This is an element in the round class, since we have applied a background, and width attributes to the class, this element will inherit those values.&lt;/div&gt;<br />
&lt;p class=&#8221;round&#8221; id=&#8221;corner&#8221;&gt;This element will have the rounded corner effect, but will also have a different background color, width, and text color since it also has an id value&lt;/p&gt;</p>
<p>Since our images only have the color if the background of the body to create the rounded effect, both elements will have a rounded effect, but with different background colors.</p>
<p>Here is the all of the CSS:</p>
<p style="border: 1px solid #cccccc;padding: 5px;color: #0000ff">.round:before{<br />
background: url(’images/top_right.gif’) no-repeat top right;<br />
display: block;<br />
content: url(images/top_left.gif)<br />
}</p>
<p>.round:after{<br />
background: url(’images/bottom_right.gif’) no-repeat top right;<br />
display: block;<br />
content: url(images/bottom_left.gif)<br />
}</p>
<p>.round{<br />
background: #DCDCDC;<br />
width: 350px;<br />
}</p>
<p>#corners{<br />
background: #2F4F4F;<br />
width: 150;<br />
color: #FFFFFF;<br />
font-weight: bold;<br />
}</p>
<p>You can see an example of this code <a href="http://images.ientry.com/cssjuice/rounded/example.htm">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/rounded-corners-using-css/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>25 Rounded Corners Techniques with CSS</title>
		<link>http://www.cssjuice.com/25-rounded-corners-techniques-with-css/</link>
		<comments>http://www.cssjuice.com/25-rounded-corners-techniques-with-css/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 08:03:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Rounded Corners]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/25-rounded-corners-techniques-with-css/</guid>
		<description><![CDATA[* This post is regularly updated. * Rounded corners is one of the most popular and frequently requested CSS techniques even the father of internet Google also launch the rounded corners style markup with her Google Adsense and let users to custom their ads recently. Actually, there are a lot &#8230;]]></description>
			<content:encoded><![CDATA[<p><strong>* This post is regularly updated. *</strong></p>
<p>Rounded corners is one of the most popular and frequently requested CSS techniques even the father of internet <a href="http://google.com" target="_blank">Google</a> also launch the rounded corners style markup with her <a title="Google Adsense" href="https://www.google.com/adsense/" target="_blank">Google Adsense</a> and let users to custom their ads recently. Actually, there are a lot of methods and techniques to create rounded corners with Cascading Stylesheets. Some are quite simple just need pure CSS, and a part of them need 2 to 4 background corner images and Javascript. So i select some quality and usable rounded corners with CSS techniques for you to have the best choices.</p>
<p><strong><em>Note:</em></strong><em> Here are some additional related articles on DevWebPro you should also take a look at:</em></p>
<p>- <a href="http://www.devwebpro.com/advantages-of-using-corners-without-images/" target="_blank">Advantages of Using Corners Without Images</a></p>
<p>- <a href="http://www.devwebpro.com/smooth-your-design-and-round-those-corners/" target="_blank">Smooth Your Design and Round Those Corners!</a></p>
<p>- <a href="http://www.devwebpro.com/rounded-corners-using-css/" target="_blank">Rounded Corners Using CSS</a></p>
<p style="background-color: #EBEBEB"><strong>Techniques</strong></p>
<p>ThrashBox &#8211; create rounded-corner boxes with visual flare and the absolute minimal amount of semantically correct markup.</p>
<p><a title="http://www.vertexwerks.com/tests/sidebox/" href="http://www.vertexwerks.com/tests/sidebox/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/the-thrashbox.png" alt="http://www.vertexwerks.com/tests/sidebox/" width="426" height="145" /></a></p>
<p>Even More Rounded Corners With CSS &#8211; nice technique with fluid rounded corner dialogs and support for borders, alpha transparency throughout, gradients and patterns.<br />
<a title="Even More Rounded Corners With CSS" href="http://www.schillmania.com/content/projects/even-more-rounded-corners/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/even-more-rounded-corners-with-css-schillmaniacom_1185583711537.png" alt="Even More Rounded Corners With CSS" width="372" height="126" /></a></p>
<p>DomCorners &#8211; a very simple technique for getting rounded corners.<br />
<a title="DomCorners" href="http://web-graphics.com/mtarchive/001660.php" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/dom-corners-layout-light-version-with-transparent-gifs_1185586757491.png" alt="DomCorners" width="362" height="97" /></a></p>
<p>virtuelvis.com Rounded corners in CSS &#8211; allow you to retrofit this to existing designs without altering any markup.<br />
<a title="Rounded corners in CSS" href="http://virtuelvis.com/gallery/css/rounded/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/rounded-corners-in-css-virtuelvis_1185588381462.png" alt="Rounded corners in CSS" width="370" height="101" /></a></p>
<p>Transparent custom corners and borders version 2 &#8211; a technique for creating custom corners and borders with optional alpha transparency.<br />
<a title="Transparent custom corners and borders version 2" href="http://www.456bereastreet.com/archive/200609/transparent_custom_corners_and_borders_version_2/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/tccb-v2-demo-page-456-berea-street_1185586908677.png" alt="Transparent custom corners and borders version 2" width="348" height="97" /></a></p>
<p>CSS Teaser Box with rounded corners &#8211; by Roger Johansson, the same author of Transparent custom corners and borders version 2.<br />
<a title="CSS Teaser Box" href="http://www.456bereastreet.com/archive/200406/css_teaser_box/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/css-teaser-box-fixed-width-one-image-lab-456-berea-street_1185587208769.png" alt="CSS Teaser Box" width="390" height="111" /></a></p>
<p>News List &#8211; was designed to display links to recent news.<br />
<a title="news list" href="http://www.456bereastreet.com/lab/newslist/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/news-list-lab-456-berea-street_1185587408717.png" alt="news list" width="323" height="115" /></a></p>
<p>CSS Liquid Round Corners &#8211; a re-usable rounded box, note that it needs total 6 images for wrap the corners.<br />
<a title="CSS Liquid Round Corners" href="http://www.search-this.com/2007/02/12/css-liquid-round-corners" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/css-rounded-corners-liquid-images_1185584006015.png" alt="CSS Liquid Round Corners" width="437" height="108" /></a></p>
<p>Anti-aliased Nifty Corners &#8211; based on Nifty Corners and modified by Steven Wittens.<br />
<a title="Anti-aliased Nifty Corners" href="http://acko.net/blog/anti-aliased-nifty-corners" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/anti-aliased-nifty-corners-steven-wittens-ackonet_1185589885577.png" alt="Anti-aliased Nifty Corners" width="413" height="120" /></a></p>
<p>Simple Box by tedd &#8211; another simple rounded corners.<br />
<a title="Simple Box by tedd" href="http://www.sperling.com/examples/box/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/box-by-tedd_1185587592464.png" alt="Simple Box by tedd" width="337" height="110" /></a></p>
<p>CSS and round corners making accessible menu tabs &#8211; decent rounded corners style menu tabs technique.<br />
<a title="CSS and round corners Making accessible menu tabs" href="http://www.webcredible.co.uk/user-friendly-resources/css/css-round-corners.shtml" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/css-and-round-corners-making-accessible-menu-tabs_1185587001167.png" alt="CSS and round corners Making accessible menu tabs" width="321" height="94" /></a></p>
<p>CSS and round corners borders with curves &#8211; make a rounded corners borders with curves.<br />
<a title="CSS and round corners Borders with curves" href="http://www.webcredible.co.uk/user-friendly-resources/css/css-round-corners-borders.shtml" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/css-and-round-corners-borders-with-curves_1185587815220.png" alt="CSS and round corners Borders with curves" width="315" height="69" /></a></p>
<p>Airtight Corners &#8211; produce a box with rounded corners using only one image, and off-setting that image for each corner.<br />
<a title="Airtight Corners" href="http://www.airtightov.com/lab/airtight_corners.html" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/airtight-corners_1185588571515.png" alt="Airtight Corners" width="376" height="91" /></a></p>
<p>Mountaintop Corners &#8211; easier way for creating decent rounded corners.<br />
<a title="Mountaintop Corners" href="http://www.alistapart.com/articles/mountaintop/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/untitled_1185585362980.png" alt="Mountaintop Corners" width="350" height="132" /></a></p>
<p>Editsite Rounded Corners &#8211; need a javascript to create the corners.<br />
<a title="http://www.editsite.net/blog/rounded_corners.html" href="http://www.editsite.net/blog/rounded_corners.html" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/editsitenet-rounded-corners_1185585737230.png" alt="http://www.editsite.net/blog/rounded_corners.html" width="376" height="132" /></a></p>
<p>Create a rounded block or design with CSS and XHTML &#8211; easily create a rounded block.<br />
<a title="Create a rounded block or design with CSS and XHTML" href="http://tutorials.alsacreations.com/cadre/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/alsacreations-create-a-rounded-block-with-css-and-xhtml_1185588005377.png" alt="Create a rounded block or design with CSS and XHTML" width="348" height="113" /></a></p>
<p>Resizable box with freely stylable corners and surface &#8211; re sizable rounded corners box.<br />
<a title="Resizable box with freely stylable corners and surface" href="http://roundedbox.andreas-kalt.de/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/stylable-box_1185588162107.png" alt="Resizable box with freely stylable corners and surface" width="384" height="107" /></a></p>
<p>Smart Round Corners &#8211; a practical solution to uses small images for markup the corners.<br />
<a title="Smart Round Corners" href="http://mikecherim.com/experiments/css_smart_corners.php" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/css-smart-corners.png" alt="Smart Round Corners" width="348" height="110" /></a></p>
<p>Lean and Clean CSS boxes &#8211; need 2 images to wrap the header and box.<br />
<a title="http://www.tjkdesign.com/articles/roundbox.asp" href="http://www.tjkdesign.com/articles/roundbox.asp" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/rounded-corners-and-shadow_1185583253020.png" alt="http://www.tjkdesign.com/articles/roundbox.asp" width="221" height="106" /></a></p>
<p>Broader Border Corners &#8211; a quick and easy recipe for turning those single-pixel borders.<br />
<a title="Broader Border Corners" href="http://24ways.org/2005/broader-border-corners" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/broader-border-corners-example-3_1185588908252.png" alt="Broader Border Corners" width="581" height="104" /></a></p>
<p>Snazzy Borders &#8211; based on Nifty Corners By Alessandro Fulciniti<br />
<a title="Snazzy Borders" href="http://www.cssplay.co.uk/boxes/snazzy.html" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/stu-nicholls-cssplay-snazzy-borders_1185590157672.png" alt="Snazzy Borders" width="359" height="102" /></a></p>
<p>Rounded corners in CSS by Adam Kalsey &#8211; requires 4 corners images.<br />
<a title="Rounded corners in CSS by Adam Kalsey" href="http://www.kalsey.com/2003/07/rounded_corners_in_css/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/rounded-corners-in-css-adam-kalsey_1185590320492.png" alt="Rounded corners in CSS by Adam Kalsey" width="327" height="105" /></a></p>
<p>curvyCorners &#8211; a free JavaScript program that will create on-the-fly rounded corners for any HTML DIV element, that look as good as any graphically created corners.<br />
<a title="curvyCorners" href="http://www.curvycorners.net/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/curvycorners-demo_1185589195502.png" alt="curvyCorners" width="383" height="115" /></a></p>
<p>Nifty Corners &#8211; a solution based on CSS and Javascript to get rounded corners.<br />
<a title="Nifty Corners" href="http://www.html.it/articoli/niftycube/index.html" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/nifty-corners-javascript-and-css-rounded-corners_1185589410653.png" alt="Nifty Corners" width="316" height="112" /></a></p>
<p>quinncrowley.com &#8211; based upon a combination of <a href="http://www.pixy.cz/blogg/clanky/cssnopreloadrollovers/" target="_blank">pixy</a> and <a href="http://kalsey.com/2003/07/rounded_corners_in_css/" target="_blank">Kalsey</a><br />
<a title="http://www.quinncrowley.com/rounded.htm" href="http://www.quinncrowley.com/rounded.htm" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/rounded-corners-no-preload_1185586508704.png" alt="http://www.quinncrowley.com/rounded.htm" width="269" height="114" /></a></p>
<p style="background-color: #EBEBEB"><strong>Rounded Corners Generators</strong></p>
<p>Online rounded corners generators, Rocks!</p>
<p>http://www.roundedcornr.com/ &#8211; the herald of rounded corners generator tool.<br />
<a title="http://www.roundedcornr.com/" href="http://www.roundedcornr.com/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/roundedcornr-rounded-corner-and-gradient-generator_1185584434996.png" alt="http://www.roundedcornr.com/" width="488" height="78" /></a></p>
<p>http://www.spiffycorners.com/ &#8211; simple way to generate the CSS and HTML you need to create anti-aliased corners without using images or Javascript.<br />
<a title="http://www.spiffycorners.com/" href="http://www.spiffycorners.com/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/spiffy-corners-purely-css-rounded-corners_1185584538240.png" alt="http://www.spiffycorners.com/" width="394" height="116" /></a></p>
<p>http://tools.sitepoint.com/spanky/ &#8211; an experimental technique for using only CSS to produce &#8217;round-cornered content boxes&#8217; with semantically pure markup.<br />
<a title="http://tools.sitepoint.com/spanky/" href="http://tools.sitepoint.com/spanky/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/sitepoint-tools-spanky-corners-the-sitepoint-corners-store_1185584732492.png" alt="http://tools.sitepoint.com/spanky/" width="348" height="94" /></a></p>
<p>http://spiffybox.com/ &#8211; another project by the owner of Spiffy Corners.<br />
<a title="http://spiffybox.com/" href="http://spiffybox.com/" target="_blank"><img style="border: 1px dashed #000000" src="http://images.ientrymail.com/cssjuice/2007/07/spiffy-box-simple-rounded-corner-css-boxes-made-easy_1185586092494.png" alt="http://spiffybox.com/" width="315" height="96" /></a></p>
<p style="background-color: #EBEBEB"><strong>Tutorials</strong></p>
<p>There are quite a lot of CSS rounded corners tutorials, it is impossible to post all articles here. So selection is necessary, here is some you may feel interesting.</p>
<blockquote><p><strong><a title="Rounded Corners with CSS and JavaScript" href="http://www.sitepoint.com/article/rounded-corners-css-javascript" target="_blank">Rounded Corners with CSS and JavaScript</a> by Simon Willison</strong><br />
Rounded corners are one of the most frequently requested CSS techniques. As with many things in CSS, there are various ways in which this problem can be approached. In this article, I&#8217;ll look at the pros and cons of some common techniques and introduce a new technique that utilises both CSS and JavaScript.</p></blockquote>
<blockquote><p><strong><a title="Rounded Corners without Images: A Nifty Corners Inspiration" href="http://seky.nahory.net/2005/04/rounded-corners/" target="_blank">Rounded Corners without Images: A Nifty Corners Inspiration</a></strong><br />
What is it all about? It&#8217;s a method of creating rounded corners of an element without using images, just with a piece of JavaScript and few drops of CSS. I like rounded corners, but the necessity to create for every diameter and every combination of foreground and background color 4 images for me as the designer and to download them for the user makes me use the square ones in most cases.</p></blockquote>
<blockquote><p><strong><a title="CSS Design: Creating Custom Corners &amp; Borders" href="http://www.alistapart.com/articles/customcorners/" target="_blank">CSS Design: Creating Custom Corners &amp; Borders</a> by  SÃ¸ren Madsen</strong><br />
We&#8217;ve all heard the rap:<br />
â€œSites designed with CSS tend to be boxy and hard-edged. Where are the rounded corners?â€<br />
Answer: the rounded corners are right here. In this article, we&#8217;ll show how customized borders and corners can be applied to fully fluid and flexible layouts with dynamic content, using sound and semantically logical markup.</p></blockquote>
<blockquote><p><strong><a title="Rounded Corner Boxes the CSS3 Way" href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" target="_blank">Rounded Corner Boxes the CSS3 Way</a> by Andy Budd</strong><br />
If you&#8217;ve been doing CSS for a while you&#8217;ll know that there are approximately 3,762 ways to create a rounded corner box. The simplest techniques rely on the addition of extra mark-up directly to your page, while the more complicated ones add the mark-up though DOM manipulation.</p></blockquote>
<p style="background-color: #EBEBEB"><strong>*Updates</strong></p>
<p><a title="CSS Rounded Corners 'Roundup'" href="http://www.smileycat.com/miaow/archives/000044.php">CSS Rounded Corners &#8216;Roundup&#8217;</a> &#8211; one more great list by <a href="http://www.smileycat.com">Smiley Cat</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/25-rounded-corners-techniques-with-css/feed/</wfw:commentRss>
		<slash:comments>148</slash:comments>
		</item>
		<item>
		<title>Create Interactive Web Pages with The Ajax Control Kit</title>
		<link>http://www.cssjuice.com/create-interactive-web-pages-with-the-ajax-control-kit/</link>
		<comments>http://www.cssjuice.com/create-interactive-web-pages-with-the-ajax-control-kit/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 09:36:59 +0000</pubDate>
		<dc:creator>Stephen Davies</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/create-interactive-web-pages-with-the-ajax-control-kit/</guid>
		<description><![CDATA[Any programmer today knows how crucial .NET technologies are to their development careers. In particular, ASP.NET has caught the eyes of so many development companies that applications are being coded with this language every week. The ASP.NET Control Toolkit is another open source project and allows coders to develop controls &#8230;]]></description>
			<content:encoded><![CDATA[<p>Any programmer today  knows how crucial .NET technologies are to their development careers.  In particular, ASP.NET has caught the eyes of so many development  companies that applications are being coded with this language every  week. The ASP.NET Control Toolkit is another open source project and  allows coders to develop controls and rich applications.</p>
<p>This particular open  source kit is backed by Microsoft as this kit is a joint achievement  between Microsoft and the growing ASP.NET AJAX community. The kit has  various functions that allow speedy development of various  applications. If you go to the main site at <u><a HREF="http://www.asp.net/ajax/AjaxControlToolkit/Samples/">http://www.asp.net/ajax/AjaxControlToolkit/Samples/</a></u>,  you will notice a foray of user created samples.</p>
<p><span id="more-4942"></span></p>
<p>Let’s look at some outstanding points on the toolkit:</p>
<ol>
<li>
<p>Simple and  	easy to use following the Getting Started quick tutorials.</p>
<li>
<p>Free library  	that offers Ajax enabled controls.</p>
<li>
<p>Developers can  	add JavaScript if required.</p>
<li>
<p>The kit is  	compatible with all the latest browser versions for Firefox and  	Internet Explorer.</p>
</ol>
<p>Today’s web sites  are focused on presenting an interactive web experience.  The kit has  more than 30 very unique controls to allow developers to create  interactive applications. Once you get used to the main controls,  it’s a good idea to keep checking the page above for any new  controls that have been added. One of the new controls added is an  HTML editor for direct edits to the code markup. It’s rather like a  visual editor so it can be suitable for most levels of experience.</p>
<p>Us e the tutorials  wisely, best to start with the Getting Started section if you are new  to .NET and this kit.  The kit is backed by a large community like  most successful open source projects and they are willing to answer  questions on the use of the product.  </p>
<p>There are advantages  to using a kit that is built on the ASP language. Developers can be  immediately familiar with the functions especially if they have used  Net AJAX or the jQuery library. Developers have the advantage of  expanding on the open source kit by adding new classes if desired.</p>
<p>Developers whom prefer jQuery’s style can use the jQuery UI if desired and  combine with the kit where appropriate. Though, it’s entirely  possible to just use the toolkit as it offers a high quality control  set and ease of use. The developers working on the open source  controls are fixing bugs when they crop up. The new releases always  have a set of updates referencing new fixes. This is the essence of  an open source community that brings together likeminded programmers.</p>
<p>If you are using AJAX and  ASP.NET each day of your project cycle, you should consider this  enterprising toolkit to be part of your programming software library.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/create-interactive-web-pages-with-the-ajax-control-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 15 Awesome Website Showcases</title>
		<link>http://www.cssjuice.com/top-15-awesome-website-showcases/</link>
		<comments>http://www.cssjuice.com/top-15-awesome-website-showcases/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 09:36:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/top-15-awesome-website-showcases/</guid>
		<description><![CDATA[Website showcase is popular nowadays. As i know, there are more than 100 website showcases in the internet, some of them have quality content and are well-design, so today i select some of the most strongest sites for you to have a better choice. Don&#8217;t forget to let me know &#8230;]]></description>
			<content:encoded><![CDATA[<p>Website showcase is popular nowadays. As i know, there are more than 100 website showcases in the internet, some of them have quality content and are well-design, so today i select some of the most strongest sites for you to have a better choice. Don&#8217;t forget to let me know if you know or own any more nice showcase sites.</p>
<p><a title="designshack" href="http://www.designshack.co.uk/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/design-shack.png" alt="Design Shack" /></a></p>
<p><a title="css-design-yorkshire" href="http://www.css-design-yorkshire.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-web-design-yorkshire.png" alt="http://www.css-design-yorkshire.com/" /></a></p>
<p><a title="csshazard" href="http://csshazard.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-hazard.png" alt="http://csshazard.com/" /></a></p>
<p><a title="thedesignedtree" href="http://www.thedesignedtree.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_the-designed-tree.png" alt="http://www.thedesignedtree.com/" /></a></p>
<p><a title="thebestdesigns.com" href="http://www.thebestdesigns.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_the-best-designs.png" alt="http://www.thebestdesigns.com/" /></a></p>
<p><a title="stylecrunch" href="http://www.stylecrunch.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_style-crunch.png" alt="http://www.stylecrunch.com/" /></a></p>
<p><a title="csssmoothoperator" href="http://www.csssmoothoperator.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-smooth-operator.png" alt="http://www.csssmoothoperator.com/" /></a></p>
<p><a title="cssmess" href="http://www.cssmess.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-mess.png" alt="http://www.cssmess.com/" /></a></p>
<p><a title="screenfluent" href="http://screenfluent.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_screenfluent.png" alt="http://screenfluent.com/" /></a></p>
<p><a title="cssclip" href="http://www.cssclip.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_cssclip.png" alt="http://www.cssclip.com/" /></a></p>
<p><a title="light on dark" href="http://www.lightondark.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_light-on-dark.png" alt="http://www.lightondark.com/" /></a></p>
<p><a title="inspirationking" href="http://www.inspirationking.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_inspirationking.png" alt="http://www.inspirationking.com/" /></a></p>
<p><a title="csstux" href="http://www.csstux.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_csstux.png" alt="http://www.csstux.com/" /></a></p>
<p><a title="csscontainer" href="http://csscontainer.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-container.png" alt="http://csscontainer.com/" /><br />
</a></p>
<p><a title="cssremix." href="http://cssremix.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-remix.png" alt="http://cssremix.com" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/top-15-awesome-website-showcases/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>26 Useful Firefox Extensions for Web Design</title>
		<link>http://www.cssjuice.com/26-useful-firefox-extensions-for-design/</link>
		<comments>http://www.cssjuice.com/26-useful-firefox-extensions-for-design/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/26-useful-firefox-extensions-for-design/</guid>
		<description><![CDATA[* This post is regularly updated. * Approximately 60-70% of CSS Juice visitors are Firefox users, so i had an idea to create a complete list of Firefox Extensions / add-ons for web designers and developers. After a pain searched and tested, here is some of useful extensions you would &#8230;]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffc"><strong>* This post is regularly updated. *</strong></span><br />
<img src="http://images.ientrymail.com/cssjuice/2007/07/browser.png" alt="browser" align="left" />Approximately 60-70% of <a href="http://cssjuice.com">CSS Juice</a> visitors are <a href="http://www.mozilla.com/" target="_blank">Firefox</a> users, so i had an idea to create a complete list of <a href="https://addons.mozilla.org/en-US/firefox/browse/type:1" target="_blank">Firefox Extensions</a> / add-ons for web designers and developers. After a pain searched and tested, here is some of useful extensions you would happy to install. Same words, the list will keep update if i find more. Anyway, only a part of these extension have been tested by myself. Make sure to read the complete description of each add-on before you download from <a href="http://www.mozilla.com/" target="_blank">Firefox</a>. Let me know which one is valuable or not and you are current using.</p>
<p class="header">Source code Viewer and Editor</p>
<p>1. CSSViewer &#8211; simple and useful extension for view any part of CSS property at current pages. Recommended!<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/2104" title="CSSViewer" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/cssviewer.png" alt="CSSViewer" /></a></p>
<p>2. <a href="https://addons.mozilla.org/en-US/firefox/addon/179" target="_blank">EditCSS</a> &#8211; it is easy way to view or modifier any stylesheets in the Sidebar just right click or &#8220;Shift+Ctrl+8&#8243;.</p>
<p>3. Firebug &#8211; view, edit, and monitor CSS, HTML and Javascript live at any web pages. There is a small green click added at the bottombar after installation.<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/1843" title="Firebug" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_firebug.png" alt="Firebug" /></a></p>
<p>4. <a href="https://addons.mozilla.org/en-US/firefox/addon/697" target="_blank">View formatted source</a> &#8211; similar with CSSViewer, displays formatted and color-coded source for each element.</p>
<p>5. <a href="https://addons.mozilla.org/en-US/firefox/addon/4187" target="_blank">CSSMate</a> &#8211; online CSS editor extension, similar with EditCSS.</p>
<p>6. <a href="https://addons.mozilla.org/en-US/firefox/addon/394" target="_blank">ViewSourceWith</a> &#8211; let you view page source with external applications.</p>
<p>7. <a href="https://addons.mozilla.org/en-US/firefox/addon/4415" target="_blank">Font Finder</a> &#8211; simply highlight a single element and right click to view all CSS style.</p>
<p>8. <a href="https://addons.mozilla.org/en-US/firefox/addon/3829" target="_blank">Live HTTP Headers</a> &#8211; View HTTP headers of a page and while browsing.</p>
<p>9. <a href="https://addons.mozilla.org/en-US/firefox/addon/967" target="_blank">Modify Headers</a> &#8211; allows you to add, modify and filter http request headers.</p>
<p>10. <a href="https://addons.mozilla.org/en-US/firefox/addon/2823" target="_blank">Professor X</a> &#8211; let&#8217;s you see inside a page&#8217;s head without viewing the source code.</p>
<p class="header">Web page Validators</p>
<p>11. <a href="https://addons.mozilla.org/en-US/firefox/addon/2289" target="_blank">CSS validator</a> &#8211; one click to valid a page using the W3C CSS validator.</p>
<p>12. <a href="https://addons.mozilla.org/en-US/firefox/addon/2609" target="_blank">Validaty</a> &#8211; Provides you a button to validate a page using a validator like validator.w3.org.</p>
<p>13. <a href="https://addons.mozilla.org/en-US/firefox/addon/249" target="_blank">Html Validator</a> &#8211; adds HTML validation inside Firefox and Mozilla.</p>
<p>14. <a href="https://addons.mozilla.org/en-US/firefox/addon/1760" target="_blank">SourceEditor</a> &#8211; view and edit source of HTML element.</p>
<p>15. <a href="https://addons.mozilla.org/en-US/firefox/addon/2318">Total Validator</a> &#8211; provides true HTML validation (HTML 2.0 to XHTML 1.1) using the official DTDs, plus added attribute checking.</p>
<p>16. <a href="https://addons.mozilla.org/en-US/firefox/addon/532" target="_blank">LinkChecker</a> &#8211; Check the validity of links on any web page.</p>
<p class="header">Miscellaneous</p>
<p>17. <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer</a> &#8211; Adds a menu and a toolbar with various web developer tools.</p>
<p>18. <a href="https://addons.mozilla.org/en-US/firefox/addon/1386" target="_blank">Style Sheet Chooser II</a> &#8211; allows you to choose author-provided alternate style sheets for a web site.</p>
<p>19. <a href="https://addons.mozilla.org/en-US/firefox/addon/2214" target="_blank">View Dependencies</a> &#8211; lists all the files which were loaded to show the current page at a tab of &#8220;page info&#8221; window.</p>
<p>20. <a href="https://addons.mozilla.org/en-US/firefox/addon/4242" target="_blank">Accessibar</a> &#8211; enabling easy manipulation of web page display and text-to-speech output.</p>
<p>21. Aardvark &#8211; used for cleaning up a page prior to printing it for making the page more readable and analyzing the structure of a page.<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/4111" title="Aardvark" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_aardvark.png" alt="Aardvark" /></a></p>
<p>22. <a href="https://addons.mozilla.org/en-US/firefox/addon/2617" target="_blank">Copy as HTML Link </a> &#8211; creates an HTML link to the current page using the selected text, copy and paste into other applications.</p>
<p>23. <a href="https://addons.mozilla.org/en-US/firefox/addon/2637" target="_blank">TableTools</a> &#8211; sorts, filters or copies any HTML table.</p>
<p>24. <a href="https://addons.mozilla.org/en-US/firefox/addon/3235" target="_blank">CHM Reader</a> &#8211; make firefox support Compiled HTML file reading.</p>
<p>25. <a href="https://addons.mozilla.org/en-US/firefox/addon/4274" target="_blank">PageDiff</a> &#8211; a simple page compare application to helps web developers and designers to see HTML code differences between web pages.</p>
<p>26. Clipmarks &#8211; let you save any parts of current web pages. Nice and Recommended!<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/1407" title="clipmarks" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_clipmarks.png" alt="clipmarks" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/26-useful-firefox-extensions-for-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>20 Popular CSS Online Tools and Generators</title>
		<link>http://www.cssjuice.com/20-popular-css-online-tools/</link>
		<comments>http://www.cssjuice.com/20-popular-css-online-tools/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Rounded Corners]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/20-popular-css-online-tools/</guid>
		<description><![CDATA[* This post is regularly updated. * Well, a new list of popular CSS online tools and generators is launched today. All these tools are selected due to the design and popularity. And there are some tools are out of the list as the poor site design or similarity. The &#8230;]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffffcc"><strong>* This post is regularly updated. *</strong></span><br />
Well, a new list of popular CSS online tools and generators is launched today. All these tools are selected due to the design and popularity.  And there are some tools are out of the list as the poor site design or similarity. The list is separated with &#8220;CSS Formatter and Optimizer&#8221;, &#8220;CSS Layout and Menu Generator&#8221; and &#8220;Miscellaneous Tools&#8221;. Say your words via comment and let me know your thoughts.</p>
<p class="header">CSS Formatter and Optimizer</p>
<p>http://www.codebeautifier.com/</p>
<p><a href="http://www.codebeautifier.com/" title="http://www.codebeautifier.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_code-beautifier.png" alt="http://www.codebeautifier.com/" /></a></p>
<p>http://www.cleancss.com/</p>
<p><a href="http://www.cleancss.com/" title="www.cleancss.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_clean-css.png" alt="www.cleancss.com/" /></a></p>
<p>http://www.cssdrive.com/index.php/main/csscompressor/ &#8211; a online CSS compressor, powered by CSS Drive.<br />
<a href="http://www.cssdrive.com/index.php/main/csscompressor/" title="http://www.cssdrive.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-drive-gallery.png" alt="http://www.cssdrive.com/" /></a></p>
<p>http://iceyboard.no-ip.org/projects/css_compressor &#8211; another CSS compressor.<br />
<a href="http://iceyboard.no-ip.org/projects/css_compressor" title="http://iceyboard.no-ip.org/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_icey.png" alt="http://iceyboard.no-ip.org/" /></a></p>
<p>http://www.cssoptimiser.com/</p>
<p><a href="http://www.cssoptimiser.com/" title="http://www.cssoptimiser.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_online-css-optimizer.png" alt="http://www.cssoptimiser.com/" /></a></p>
<p>http://flumpcakes.co.uk/css/optimiser/</p>
<p><a href="http://flumpcakes.co.uk/css/optimiser/" title="http://flumpcakes.co.uk/css/optimiser/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_online-css-optimiser.png" alt="http://flumpcakes.co.uk/css/optimiser/" /></a></p>
<p>http://www.prettyprinter.de/</p>
<p><a href="http://www.prettyprinter.de/" title="http://www.prettyprinter.de/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_prettyprinterde_1185703139869.png" alt="http://www.prettyprinter.de/" /></a></p>
<p class="header">CSS Layout and Menu Generator</p>
<p>http://csscreator.com/?q=tools/layout &#8211; online CSS layout generator for you to create a fluid or fixed width floated column layout.<br />
<a href="http://csscreator.com/?q=tools/layout" title="http://csscreator.com/?q=tools/layout" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-creator_1185699542605.png" alt="http://csscreator.com/?q=tools/layout" /></a></p>
<p>http://www.inknoise.com/experimental/layoutomatic.php &#8211; Layout-o-Matic automatically generates CSS layouts.<br />
<a href="http://www.inknoise.com/experimental/layoutomatic.php" title="http://www.inknoise.com/experimental/layoutomatic.php" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn__1185699695722.png" alt="http://www.inknoise.com/" /></a></p>
<p>http://www.wannabegirl.org/firdamatic/ &#8211; an online tableless layout generator that allows you to create and customise layouts easily.<br />
<a href="http://www.wannabegirl.org/firdamatic/" title="http://www.wannabegirl.org/firdamatic/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_firdamatic.png" alt="http://www.wannabegirl.org/firdamatic/" /></a></p>
<p>http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php &#8211; CSS source ordered variable Border 1-3 columned page maker.<br />
<a href="http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php" title="http://www.positioniseverything.net/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-source-ordered.png" alt="http://www.positioniseverything.net/" /></a></p>
<p>http://www.qrone.org/cssdesigner.html &#8211; online CSS style generator.<br />
<a href="http://www.qrone.org/cssdesigner.html" title="http://www.qrone.org/cssdesigner.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_qrone-css-designer.png" alt="http://www.qrone.org/" /></a></p>
<p>http://www.scriptomizers.com/css/stylesheet_generator &#8211; a CSS stylesheet generator.<br />
<a href="http://www.scriptomizers.com/css/stylesheet_generator" title="http://www.scriptomizers.com/css/stylesheet_generator" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_stylesheet-generator.png" alt="http://www.scriptomizers.com/" /></a></p>
<p>http://www.colly.com/scripts/rollover.html &#8211; CSS rollover generator.<br />
<a href="http://www.collylogic.com/scripts/rollover.html" title="http://www.collylogic.com/scripts/rollover.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_collylogic.png" alt="http://www.collylogic.com/" /></a></p>
<p>http://www.webmaster-toolkit.com/css-menu-generator.shtml &#8211; CSS menu generator.<br />
<a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" title="http://www.webmaster-toolkit.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-menu-generator.png" alt="http://www.webmaster-toolkit.com/" /></a></p>
<p>http://www.listulike.com/generator/ &#8211; create cross-browser list-based navigation bars.<br />
<a href="http://www.listulike.com/generator/" title="http://www.listulike.com/generator/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-generator.png" alt="http://www.listulike.com/generator/" /></a></p>
<p class="header">Miscellaneous Tools</p>
<p>http://www.roundedcornr.com/ &#8211; the king of online rounded corners generators with gradient.<br />
<a href="http://www.roundedcornr.com/" title="http://www.roundedcornr.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_roundedcornr.png" alt="http://www.spiffycorners.com/" /></a></p>
<p>http://www.theboxoffice.be/ &#8211; lets you wrap/float/contour text around freeform images using CSS.<br />
<a href="http://www.theboxoffice.be/" title="http://www.theboxoffice.be/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_the-box-office.png" alt="http://www.theboxoffice.be/" /></a></p>
<p>http://riddle.pl/emcalc/ &#8211; estimates Em size equivalent to px size.<br />
<a href="http://riddle.pl/emcalc/" title="http://riddle.pl/emcalc/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_em-calculator_1185700555519.png" alt="http://riddle.pl/emcalc/" /></a></p>
<p>http://www.css-ref.com/ &#8211; test your CSS code.<br />
<a href="http://www.css-ref.com/" title="http://www.css-ref.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-reference.png" alt="http://www.css-ref.com/" /></a></p>
<p class="header">*Updates</p>
<p>http://services.immike.net/css-checker/ &#8211; find CSS selectors that aren&#8217;t used by any of your HTML files and may be redundant.<br />
<a href="http://services.immike.net/css-checker/" target="_blank" title="http://services.immike.net/css-checker/"><img src="http://images.ientrymail.com/cssjuice/2007/07/tn_css-redundancy-checker.png" alt="http://services.immike.net/css-checker/" /></a></p>
<p class="header">* Updates</p>
<p>http://www.cssfly.net/ &#8211; easy source code viewer and editing websites directly.<br />
<a href="http://www.cssfly.net/" target="_blank" title="http://www.cssfly.net/"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_cssfly-edit-websites-on-the-fly.png" alt="http://www.cssfly.net/" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/20-popular-css-online-tools/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>30 Free CSS Based Navigation Menus</title>
		<link>http://www.cssjuice.com/30-free-css-based-navigation-menus/</link>
		<comments>http://www.cssjuice.com/30-free-css-based-navigation-menus/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/30-free-css-based-navigation-menus/</guid>
		<description><![CDATA[* This post is regularly updated. * After 20 Popular CSS Online Tools and Generators, this is a new full list of CSS based navigation menus collection, it includes 30 various styles of navigation menus, vertical menus, Javascript powered menus and tab menus. Navigation menus is one of important elements &#8230;]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffffcc"><strong>* This post is regularly updated. *</strong></span><br />
After <a href="http://cssjuice.com/20-popular-css-online-tools/">20 Popular CSS Online Tools and Generators</a>, this is a new full list of CSS based navigation menus collection, it includes 30 various styles of navigation menus, vertical menus, Javascript powered menus and tab menus. Navigation menus is one of important elements for web design. <a href="http://www.smashingmagazine.com/" target="_blank">SmashingMagazine</a> has already published a great post to showcase all modern and beautiful CSS based styling menus, check it out <a href="http://www.smashingmagazine.com/2007/03/14/css-based-navigation-menus-modern-solutions/" target="_blank">here</a> to see what other expert designers did. And below is the list of usable and free CSS menu techniques and resources that you can use for your blogs or websites. Probably some of them you have already seen before, but it is an round-up and can be your further reference. Cheers.</p>
<p class="header">CSS Based Navigation Menus</p>
<p>Tabbed Navigation Using CSS<br />
<a href="http://tutorials.mezane.org/tabbed-navigation-using-css/#Introduction" target="_blank" title="Tabbed Navigation Using CSS"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_tabbed-navigation-using-css.png" alt="http://tutorials.mezane.org/tabbed-navigation-using-css/#Introduction" /></a></p>
<p>SimpleBits Mini-Tab Shapes &#8211; 4 different styles use a single, small gif for hovering and active tabs.<br />
<a href="http://www.simplebits.com/bits/minitab_shapes.html" target="_blank" title="SimpleBits - Mini-Tab Shapes"><img src="http://images.ientrymail.com/cssjuice/2007/08/simplebits-mini-tab-shapes.png" alt="SimpleBits - Mini-Tab Shapes" /></a></p>
<p>2 Level Menu &#8211; really beauty hover effect menu, unique and special. Recommended!<br />
<a href="http://www.duoh.com/csstutorials/2levelmenu/index.html" title="2 Level Menu" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_duohcom.png" alt="2 Level Menu" /></a></p>
<p>Exploding-boy CSS Tabs Menus &#8211; list of various style free tabs menu created by designer Christopher Ware.<br />
<a href="http://exploding-boy.com/images/cssmenus/menus.html" title="http://exploding-boy.com/images/cssmenus/menus.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_httpexploding-boycomimagescssmenusmenushtml.png" alt="http://exploding-boy.com/images/cssmenus/menus.html" /></a></p>
<p>CSS Based Navigation<br />
<a href="http://www.nundroo.com/navigation/" title="http://www.nundroo.com/navigation/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_httpwwwnundroocomnavigation.png" alt="http://www.nundroo.com/navigation/" /></a></p>
<p>CSS Menu with Slider &#8211; need two Javascripts for the moving slider. Simple and elegant.<br />
<a href="http://dragan.yourtree.org/blog/en/2007/05/11/css-menu-with-slider/" title="CSS Menu with slider" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_css-menu-with-slider.png" alt="CSS Menu with slider" /></a></p>
<p>Smaug Hover Menu<br />
<a href="http://smaug.cz/index.php?page=hover_menu" title="http://smaug.cz/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_smaugs-website.png" alt="http://smaug.cz/index.php?page=hover_menu" /></a></p>
<p>Drop Down Llama Menu &#8211; cool pink hover effect.<br />
<a href="http://moronicbajebus.com/wordpress/wp-content/cssplay/drop-down-llama-menu/" target="_blank" title="Drop Down Llama Menu"><img src="http://images.ientrymail.com/cssjuice/2007/08/drop-down-llama-menu.png" alt="Drop Down Llama Menu" /></a></p>
<p>Inline Mini Tabs &#8211; if you like Simplebits Mini-Tabs, it is another choice.<br />
<a href="http://web-graphics.com/mtarchive/inline-mini-tabs.html" title="Inline Mini Tabs" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/inline-minitabs.png" alt="Inline Mini Tabs" /></a></p>
<p>Pure CSS horizontal Drop Down Menu &#8211; simple CSS dropdown sub-menus.<br />
<a href="http://www.tjkdesign.com/articles/new_drop_down/default.asp" title="Pure CSS horizontal Drop Down Menu" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_pure-css-horizontal-drop-down-menu.png" alt="Pure CSS horizontal Drop Down Menu" /></a></p>
<p>Hoverbox Menu &#8211; uses images replacement techniques.<br />
<a href="http://www.designmeme.com/articles/hoverboxmenu/" title="Hoverbox Menu" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_hoverbox-menu.png" alt="Hoverbox Menu" /></a></p>
<p>Accessible Image-Tab Rollovers<br />
<a href="http://www.simplebits.com/bits/tab_rollovers.html" title="Accessible Image-Tab Rollovers" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_simplebits.png" alt="Accessible Image-Tab Rollovers" /></a></p>
<p>Fancy Menu &#8211; the coolest movable hover menu, Recommended!<br />
<a href="http://devthought.com/cssjavascript-true-power-fancy-menu/" title="Fancy menu" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/devthought.png" alt="CSS+Javascript power - Fancy menu" /></a></p>
<p><strong>You can find more at here. There is no screen shot below to reduce the loading time. : )</strong></p>
<ul>
<li><a href="http://www.simplebits.com/bits/minitabs.html" title="SimpleBits - Mini Tabs" target="_blank">CSS Mini Tabs (the UN-tab, tab)</a> &#8211; another 2 styles underline hover menus by Simplebits.</li>
<li><a href="http://www.theitarticles.com/rollover-css-image-menu/180/" target="_blank" title="Rollover CSS Image Menu">Rollover CSS Image Menu</a> &#8211; clean and elegant hover menu.</li>
<li><a href="http://www.cssplay.co.uk/menus/artists_dd.html" title="Artists drop-down validating menu" target="_blank">Artists drop-down validating menu</a> &#8211; CSS drop down menu with background images.</li>
<li><a href="http://www.unrated.be/entries/making-a-menu-using-image-replacement/" target="_blank" title="Menu using image replacement">Menu using image replacement</a></li>
<li><a href="http://www.nundroo.com/nav_matrix/welcome2.html" title="http://www.nundroo.com/nav_matrix/welcome2.html" target="_blank">Navigation Matrix Reloaded</a></li>
<li><a href="http://www.dynamicdrive.com/style/csslibrary/category/C1/" target="_blank">CSS Library Horizontal CSS Menus</a> &#8211; a bulk of CSS menu by DynamicDrive.</li>
<li><a href="http://www.13styles.com/index.html" target="_blank">13styles.com</a> &#8211; focus on CSS menu design and also offers free menus for download.</li>
<li><a href="http://www.exploding-boy.com/2005/12/29/14-free-vertical-css-menus/" target="_blank">14 Free Vertical CSS Menus</a> &#8211; designed by exploding-boy, simple and various styles.</li>
<li><a href="http://www.aplus.co.yu/adxmenu/examples/" target="_blank">ADxMenu</a> &#8211; 4 basic and useful menus with different style.</li>
<li><a href="http://solardreamstudios.com/learn/css/cssmenus" target="_blank">CSSMenus by Solardreamstudios</a> &#8211; a 4 level deep list in both horizontal and vertical layout modes.</li>
<li><a href="http://www.cssplay.co.uk/menus/drop_examples.html" target="_blank">CSS only drop-down menu</a> &#8211; 5 styles drop down menus with underlines.</li>
<li><a href="http://e-lusion.com/design/menu/#1" target="_blank">e-Lusion Vertical Menus</a> &#8211; 9 simple vertical menus.</li>
<li><a href="http://www.htmldog.com/articles/suckerfish/dropdowns/example/" target="_blank">Suckerfish Dropdowns</a> &#8211; created by HtmlDog.</li>
<li><a href="http://www.ndesign-studio.com/blog/mac/css-dock-menu" target="_blank">CSS Dock Menu</a></li>
<li><a href="http://www.roscripts.com/8_web_menus_you_just_can't_miss-116.html" target="_blank">8 Web Menus you just can&#8217;t miss</a></li>
<li><a href="http://www.sgclark.com/sandbox/minislide/" target="_blank">Mini Slide Navigation</a> &#8211; a simple slider menu.</li>
<li><a href="http://www.positioniseverything.net/css-dropdowns.html" target="_blank">Deluxe CSS Dropdowns and Flyouts</a></li>
</ul>
<p class="header">Miscellaneous</p>
<p><a href="http://2210media.com/dock_menu/" target="_blank">Webber 2.0 Dock Menu</a> &#8211; web2.0 style drop down menu with CSS and Javascript.<br />
Kollermedia Tabmenu<br />
<a href="http://www.kollermedia.at/archive/2007/02/20/download-tabmenu-for-free/" target="_blank" title="Kollermedia"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_kollermedia.png" alt="Kollermedia" /></a><br />
<a href="http://unraveled.com/projects/css_tabs/" target="_blank">Unraveled CSS Tabs</a><br />
<a href="http://www.kalsey.com/tools/csstabs/" target="_blank">CSS Tabs with Submenus</a> &#8211; designed by Adam Kalsey.<br />
<a href="http://phrogz.net/JS/Tabtastic/index.html#overview" target="_blank">Tabtastic </a> &#8211; one more tab menu here.</p>
<p class="header">Online Menu Generators</p>
<p><a href="http://www.cssplay.co.uk/menus/menu_builder_flyout.html" target="_blank">Flyout Menu Builder</a> &#8211; work at IE and Firefox, created by CSSPlay.<br />
<a href="http://jscook.yuanheng.org/JSCookMenu/MenuBuilder.html#help" target="_blank">Menu Builder for JSCookMenu</a> &#8211; simple and easy generator to create horizontal and vertical menus.</p>
<p><strong>The two generators below i have already mentioned before at <a href="http://cssjuice.com/20-popular-css-online-tools/">20 Popular CSS Online Tools and Generators</a>.</strong></p>
<p><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">http://www.webmaster-toolkit.com/css-menu-generator.shtml</a><br />
http://www.listulike.com/generator/ &#8211; create cross-browser list-based navigation bars.<br />
<a href="http://www.listulike.com/generator/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_css-generator.png" alt="http://www.listulike.com/generator/" /></a></p>
<p class="header">Further Reading</p>
<p><a href="http://24ways.org/2005/centered-tabs-with-css" target="_blank">Centered Tabs with CSS</a> &#8211; talking about create a flexible, centered alternative to floated navigation lists by Ethan Marcotte.<br />
<a href="http://www.sitepoint.com/article/accessible-menu-tabs" target="_blank">CSS and Round Corners: Build Accessible Menu Tabs</a> &#8211; tutorial for create rounded corner tab mens by Trenton Moss.<br />
<a href="http://www.alistapart.com/articles/horizdropdowns/" target="_blank">Drop-Down Menus, Horizontal Style</a> &#8211; create visually appealing drop-downs by using structured HTML and simple CSS.<br />
<a href="http://www.seoconsultants.com/css/menus/tutorial/" target="_blank">Horizontal and Vertical CSS Menu Tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/30-free-css-based-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>First Brief Self Review of CSSJuice.com</title>
		<link>http://www.cssjuice.com/first-brief-self-review-of-cssjuicecom/</link>
		<comments>http://www.cssjuice.com/first-brief-self-review-of-cssjuicecom/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Rounded Corners]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/first-brief-self-review-of-cssjuicecom/</guid>
		<description><![CDATA[First i heard about self review from BloggingTips, it is a good idea for young blog as normally you would not promote your blogs by paid review or ads until it has enough content. After one week i launched CSS Juice, it is a good time to do a brief &#8230;]]></description>
			<content:encoded><![CDATA[<p>First i heard about self review from <a href="http://www.bloggingtips.com/forums/index.php?referrerid=24">BloggingTips</a>, it is a good idea for young blog as normally you would not promote your blogs by paid review or ads until it has enough content. After one week i launched CSS Juice, it is a good time to do a brief self review.</p>
<p class="header">Traffic</p>
<p><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_cssjuice-on-top.png" alt="CSS juice featured on delicious" />Two days ago i made the right decision to move my <a href="http://statcounter.com" target="_blank">current</a> stats counter to <a href="http://www.reinvigorate.net/" target="_blank">Reinvigorate</a>, one of the best counters in the internet. Actually i got the invited account a few months ago and haven&#8217;t used it at all. The perfect interface and design of Reinvigorate is one of my favorite two stat counters, another is <a href="http://www.haveamint.com/" target="_blank">Mint</a>. And the traffic mostly came from social bookmarks sites and some design communities. It is exciting that <a href="http://cssjuice.com/25-rounded-corners-techniques-with-css/">25 Rounded Corners Techniques with CSS</a> got nearly 600 bookmarks from <a href="http://del.icio.us/" target="_blank">delicious</a> within 4 days and was featured on the homepage yesterday. It not only help to grow the traffic for CSS Juice and also the target readers. A part of them came from other blogs that quoted my popular posts like <a href="http://cssjuice.com/25-cool-portfolios-with-minimalism-design/">25 Cool Portfolios with Minimalism Design</a> and <a href="http://cssjuice.com/20-popular-css-online-tools/">20 Popular CSS Online Tools and Generators</a>. The traffic is growing every day from hundreds to thousands.</p>
<p class="header">Subscribe</p>
<p><img src="http://images.ientrymail.com/cssjuice/2007/08/analyze-feed-stats-dashboard_1185967582177.png" alt="subscribers" /><br />
Here is the total feed stats chart from <a href="http://www.feedburner.com" target="_blank">Feed Burner</a> within these few days. The stats of subscribers is increasing daily and i really appreciate you to subscribe my <a href="http://cssjuice.com/feed/">juicy blog feeds</a> to help CSS Juice growth. Up to now, my short term goal is to get my first 1000 subscribers within 3 months. No doubt, it is not a easy target and i will do all my best .</p>
<p class="header">Passion</p>
<p>At CSS Juice, you will only find all the useful and valuable informative design content, and i always <a href="http://cssjuice.com/contact/">open mind</a> to hear from your voice. And you know there are a lot of CSS resources or lists, so i will not post any similar content except i think mine is better. Besides, another thing i want to mention is that all materials are researched and selected by heart. Bulk list is meaningless so i will not write any posts that title like &#8220;Best 100 XXX&#8221; or &#8220;1000 XXX&#8221;, because i trust selection and filter are necessary to make quality posts for readers. Lastly, probably mostly of you    here are new, please consider to <a href="http://cssjuice.com/feed/">subscribe my blog feeds</a> to get updates daily.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/first-brief-self-review-of-cssjuicecom/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>18 Minimalist Design WordPress Themes</title>
		<link>http://www.cssjuice.com/18-minimalist-design-wordpress-themes/</link>
		<comments>http://www.cssjuice.com/18-minimalist-design-wordpress-themes/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/18-minimalist-design-wordpress-themes/</guid>
		<description><![CDATA[I got some positive feedback from 25 Cool Portfolios with Minimalism Design, today i attempt to roundup the minimalist style WordPress themes, actually there are lot of choices from the database, and it is impossible to have the accurate list. As the result, the list below only focus on the &#8230;]]></description>
			<content:encoded><![CDATA[<p>I got some positive feedback from <a href="http://cssjuice.com/25-cool-portfolios-with-minimalism-design/">25 Cool Portfolios with Minimalism Design</a>, today i attempt to roundup the minimalist style WordPress themes, actually there are lot of choices from the database, and it is impossible to have the accurate list. As the result, the list below only focus on the professionalism and minimalism. It is appreciated if you can remind me any suitable themes for updates.</p>
<p>Grady &#8211; designed by <a href="http://journal.barleyhut.com/" target="_blank">Barley Hut</a>. New released on July!<br />
<a title="Barley Hut Themes" href="http://themes.barleyhut.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/barley-hut-themes.png" alt="Barley Hut Themes" /></a></p>
<p>Fluid Solution &#8211; designed by <a href="http://www.kaushalsheth.com/" target="_blank">Kaushal Sheth</a>, and also offers more than 50 professional themes free to download.<br />
<a title="Fluid Solution" href="http://www.kaushalsheth.com/themes" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/fluid-solution.png" alt="Fluid Solution" /></a></p>
<p>Merdeka &#8211; artistic theme with a amazing upter nagvigation, designed by <a href="http://ikram-zidane.com/" target="_blank">Ikram Zidane</a>.<br />
<a title="Merdeka theme" href="http://ikram-zidane.com/merdeka/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/merdeka-theme.png" alt="Merdeka theme" /></a></p>
<p>Upstart Blogger Modicus &#8211; designed by minimalist <a href="http://www.upstartblogger.com/" target="_blank">Robert Ellis</a>, and also offer 2-column version.<br />
<a title="Upstart Blogger Themes" href="http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/upstart-blogger-themes.png" alt="Upstart Blogger Themes" /></a></p>
<p>Upstart Blogger Minim &#8211; designed by Robert Ellis.<br />
<a title="Upstart Blogger Themes2" href="http://www.upstartblogger.com/wordpress-theme-upstart-blogger-minim" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/upstart-blogger-themes2.png" alt="Upstart Blogger Themes2" /></a></p>
<p>Grid Focus &#8211; designed by Derek @ <a href="http://5thirtyone.com/" target="_blank">5thirtyone.com</a><br />
<a title="grid-focus" href="http://5thirtyone.com/grid-focus" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/grid-focus.gif" alt="grid-focus" /></a></p>
<p>Foliage Mod- professional artistic theme design by 5thirtyone.<br />
<a title="Foliage" href="http://5thirtyone.com/wordpress-foliage-theme/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/foliage.png" alt="Foliage" /></a></p>
<p>Gridlock &#8211; designed by <a href="http://hyalineskies.com/" target="_blank">Eston Bond</a>, the latest version is 1.4.<br />
<a title="gridlock" href="http://hyalineskies.com/wordpress/gridlock/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/gridlock.png" alt="gridlock" /></a></p>
<p>Barecity &#8211; designed by <a href="http://shaheeilyas.com/" target="_blank">Shahee Ilyas</a>.<br />
<a title="barecity1_4" href="http://shaheeilyas.com/archives/barecity/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/barecity1_4.jpg" alt="barecity1_4" /></a></p>
<p>Silhouette &#8211; designed by <a href="http://www.briangardner.com/" target="_blank">Brian Gardner</a>.<br />
<a title="Silhouette WordPress Theme" href="http://www.briangardner.com/themes/silhouette-wordpress-theme.htm" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/silhouette-wordpress-theme.png" alt="Silhouette WordPress Theme" /></a></p>
<p>Hemingway &#8211; design by professional designer <a href="http://warpspire.com/" target="_blank">Kyle Neath</a>, probably is the most popular one.<br />
<a title="hemingway" href="http://warpspire.com/hemingway" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/hemingway.gif" alt="hemingway" /></a></p>
<p>Japanese Cherry Blossom &#8211; base on Hemingway, excellent re-designed.<br />
<a title="Japanese Cherry Blossom" href="http://themes.wordpress.net/columns/1-column/499/japanese-cherry-blossom-10/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/japanese-cherry-blossom.png" alt="Japanese Cherry Blossom" /></a></p>
<p>Unsleepable &#8211; designed by <a href="http://openswitch.org/" target="_blank">Ben Gray</a>, based on K2.<br />
<a title="unsleepable" href="http://openswitch.org/unsleepable" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/unsleepable.jpg" alt="unsleepable" /></a></p>
<p>Simplr &#8211; designed by <a href="http://www.plaintxt.org" target="_blank">plaintxt.org</a>, the heaven of minimal WordPress themes collection, make sure to check it out.<br />
<a title="Simplr" href="http://www.plaintxt.org/themes/simplr/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_simplr.png" alt="Simplr" /></a></p>
<p>IAMWW w2 DnD &#8211; designed by <a href="http://iamww.com/" target="_blank">iamww.com</a>.<br />
<a title="IAMWW w2 DnD" href="http://iamww.com/wordpress-theme-iamww-w2-dnd/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/iamww-w2-dnd.png" alt="IAMWW w2 DnD" /></a></p>
<p>Transblack @ <a href="http://www.romow.com/" target="_blank">romow</a><br />
<a title="Transblack" href="http://www.romow.com/blog/category/free-wordpress-themes/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/transblack.png" alt="Transblack" /></a></p>
<p>Cutline &#8211; one of the most popular themes, designed by <a href="http://www.tubetorial.com/" target="_blank">Chris Pearson</a>, he was also the designer of <a href="http://www.findcreditcards.org/pressrow/" target="_blank">PressRow</a>.<br />
<a title="Cutline Theme" href="http://cutline.tubetorial.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/cutline-theme.png" alt="Cutline Theme" /></a></p>
<p>SimplicityBright &#8211; what i can say is elegant, the updated version supported English.<br />
<a title="SimplicityBright." href="http://www.koch-werkstatt.de/2007/03/24/wordpress-theme-simplicity/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_simpli.gif" alt="SimplicityBright." /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/18-minimalist-design-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>25 Popular Color Scheme and Palette Generators</title>
		<link>http://www.cssjuice.com/25-popular-color-scheme-and-palette-generators/</link>
		<comments>http://www.cssjuice.com/25-popular-color-scheme-and-palette-generators/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.devwebpro.com/25-popular-color-scheme-and-palette-generators/</guid>
		<description><![CDATA[* This post is regularly updated. * This is another roundup for online color scheme and palette generators. I categorize these useful tools by scheme, palette and miscellaneous. Choosing a suitable color at a suitable place is extremely important when you design web sites. For example, CSS Juice mainly use &#8230;]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #ffffcc"><strong>* This post is regularly updated. *</strong></span><br />
This is another roundup for online color scheme and palette generators. I categorize these useful tools by scheme, palette and miscellaneous.  Choosing a suitable color at a suitable place is extremely important when you design web sites. For example, CSS Juice mainly use white and gray for body and black for header and footer. This is because the site is also prepared for website showcase so the light background can flare the galleries.</p>
<p class="header">Color Scheme Generators</p>
<p>WellStyled Color Scheme Generator &#8211; generator of color schemes and palettes to create well balanced and harmonic web pages.<br />
<a title="http://wellstyled.com/" href="http://wellstyled.com/tools/colorscheme2/index-en.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_ws-color-scheme.png" alt="http://wellstyled.com/" /></a></p>
<p>ColorJack &#8211; multiple online color scheme generators used by designers.<br />
<a title="http://www.colorjack.com/" href="http://www.colorjack.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colorjack.png" alt="http://www.colorjack.com/" /></a></p>
<p>Colorschemer Online Version 2<br />
<a title="http://www.colorschemer.com/" href="http://www.colorschemer.com/online.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/color-schemer.png" alt="http://www.colorschemer.com/" /></a></p>
<p>4096 Color Wheel &#8211; hover over the color wheel to generate the scheme.<br />
<a title="http://www.ficml.org/" href="http://www.ficml.org/jemimap/style/color/wheel.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_4096-color-wheel.png" alt="4096 Color Wheel" /></a></p>
<p>Genopal Online &#8211; online harmonious color schemes creator.<br />
<a title="http://genopal.com/" href="http://genopal.com/online.php" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_genopal-online.png" alt="http://genopal.com/" /></a></p>
<p>Unsafe Colormatch &#8211; create 24-bit color schemes online.<br />
<a title="http://www.neteffect.dk/" href="http://www.neteffect.dk/colormatch/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_unsafe-colormatch.png" alt="http://www.neteffect.dk/" /></a></p>
<p>Color Mixers &#8211; RGB remixing tool.<br />
<a title="http://colormixers.com/" href="http://colormixers.com/mixers/cmr/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colormixers.png" alt="http://colormixers.com/" /></a></p>
<p>Transparent PNG Generator &#8211; create transparent PNG images in any color.<br />
<a title="http://apps.everamber.com/alpha/" href="http://apps.everamber.com/alpha/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_transparent-png-generator.png" alt="http://apps.everamber.com/" /></a></p>
<p>Colordb &#8211; powerful color scheme generator.<br />
<a title="http://pourpre.com/" href="http://pourpre.com/colordb/?l=eng" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colordb.png" alt="http://pourpre.com/" /></a></p>
<p><strong>Not enough? See also&#8230;</strong><br />
<a href="http://www.colr.org/" target="_blank">Colr</a> &#8211; generate color from your own images or flickr.<br />
<a href="http://www.stylephreak.com/cm.php" target="_blank">ColorMatch Redux</a> &#8211; simple color scheme generator.<br />
<a href="http://defmech.com/color/" target="_blank">ColorToy 2.0</a> &#8211; flash color schemer.<br />
<a href="http://www.visibone.com/colorlab/" target="_blank">Visibone Colorlab</a> &#8211; simple color wheel.<br />
<a href="http://www.dhtmlgoodies.com/scripts/color-schemer/color-schemer.html" target="_blank">Dhtmlgoodies Color Schemer</a><br />
<a href="http://www.triplecode.com/munsell/" target="_blank">Triplecode Munsell Palette</a> &#8211; cool flash-based color picker.<br />
<a href="http://www.colorsontheweb.com/" target="_blank">Colorsontheweb</a> &#8211; offers various color tools.<br />
<a href="http://www.gpeters.com/color/color-schemes.php" target="_blank">Gpeters</a> &#8211; instant color scheme from Yahoo images.</p>
<p class="header">Color Palette Generators</p>
<p>ColorHunter &#8211; new color palette generator from images.<br />
<a title="http://www.colorhunter.com/" href="http://www.colorhunter.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_color-hunter_1186279568847.png" alt="http://www.colorhunter.com/" /></a></p>
<p>Color Blender &#8211; free online color palette for design and matching.<br />
<a title="http://www.colorblender.com/" href="http://www.colorblender.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colorblendercom.png" alt="http://www.colorblender.com/" /></a></p>
<p>Swatchify &#8211; easily create and share your color palette.<br />
<a title="http://swatchify.com/" href="http://swatchify.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_swatchify.png" alt="http://swatchify.com/" /></a></p>
<p>Jrm Color Palette Generator &#8211; generate a color palette based on an image.<br />
<a title="http://jrm.cc/color-palette-generator/" href="http://jrm.cc/color-palette-generator/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_color-palette-generator1.png" alt="http://jrm.cc/" /></a></p>
<p><strong>Not enough? See alsoâ€¦</strong><br />
<a href="http://www.degraeve.com/color-palette/" target="_blank">Degraeve</a> &#8211; color palette generator from images.<br />
<a href="http://slayeroffice.com/tools/color_palette/" target="_blank">Slayeroffice</a> &#8211; simple color palette creator.<br />
<a href="http://redalt.com/Tools/I+Like+Your+Colors" target="_blank">I+Like+Your+Colors</a> &#8211; web pages color palette generator.<br />
<a href="http://bighugelabs.com/flickr/colors.php" target="_blank">Bighugelabs</a> &#8211; create a harmonious color palette from a photo.</p>
<p class="header">Miscellaneous</p>
<p>Colourlovers &#8211; well-know community, resources and color trend for color lovers.<br />
<a title="http://www.colourlovers.com/" href="http://www.colourlovers.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colourlovers.png" alt="http://www.colourlovers.com/" /></a></p>
<p>ColorCell &#8211; finding the most pleasing color combinations.<br />
<a title="http://colorcell.uneven.org" href="http://colorcell.uneven.org/index2.php" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_colorcell-home.png" alt="http://colorcell.uneven.org/index2.php" /></a></p>
<p>Colorcombos &#8211; web color combinations testing tool for web developers.<br />
<a title="http://www.colorcombos.com/" href="http://www.colorcombos.com/combotester.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_color-combinations-tester.png" alt="http://www.colorcombos.com/" /></a></p>
<p>IDEO Web Color Visualizer &#8211; background and font color comparison tool.<br />
<a title="http://www.ideo.com" href="http://www.ideo.com/visualizer.html" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_web-color-visualizer86296067369.png" alt="http://www.ideo.com" /></a></p>
<p>Kolur &#8211; color palette gallery.<br />
<a title="http://kolur.com/" href="http://kolur.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_kolur.png" alt="http://kolur.com/" /></a></p>
<p>Typetester &#8211; online application for comparison of the fonts for the screen.<br />
<a title="http://typetester.maratz.com/" href="http://typetester.maratz.com/" target="_blank"><img src="http://images.ientrymail.com/cssjuice/2007/08/tn_typetester.png" alt="http://typetester.maratz.com/" /></a></p>
<p><strong>Not enough? See alsoâ€¦</strong><br />
<a href="http://kuler.adobe.com/" target="_blank">Kuler</a> &#8211; quickly create harmonious color themes online.<br />
<a href="http://beta.dailycolorscheme.com/" target="_blank">Daily Color Scheme</a> &#8211; daily color scheme based on websites.<br />
<a href="http://whatsitscolor.com/" target="_blank">Whats Its Color</a> &#8211;  evaluate an image and give you the image&#8217;s complementary dominant colors.<br />
<a href="http://www.krazydad.com/colrpickr/" target="_blank">Colrpickr</a> &#8211; search Flickr photos based on their color.</p>
<p class="header">Further Reading</p>
<p>1. <a href="http://dustinbrewer.com/index.php?a=5" target="_blank">Understanding color in design</a> &#8211; by Dustin Brewer<br />
2. <a href="http://www.devsource.com/article2/0,1759,2069735,00.asp?kc=DSRSS04029TX1K0000651" target="_blank">Color Theory for Developers</a> &#8211; by Jon Shemitz<br />
3. <a href="http://www.ysbl.york.ac.uk/~mgwt/KKwebcourse/colourscience/colourharmony.html" target="_blank">Secrets of Web Color Revealed</a> &#8211; by Color Harmony<br />
4. <a href="http://poynterextra.org/cp/colorproject/color.html" target="_blank">The Power of Color</a> &#8211; by Pegie Stark Adam<br />
5. <a href="http://veerle.duoh.com/blog/comments/choosing_color_combinations/" target="_blank">Choosing color combinations</a> &#8211; by Veerle<br />
6. <a href="http://www.elogodesign.com/color-matching-guide/" target="_blank">Complete Color Matching Guide</a> &#8211; worth to read.<br />
7. <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fdp%2F159253192X%2F&amp;tag=cj001-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">Color Design Workbook: A Real-World Guide to Using Color in Graphic Design</a> &#8211; by Noreen Morioka and Terry Stone Sean Adams</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjuice.com/25-popular-color-scheme-and-palette-generators/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>

