<?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>Css Gallery - Appealing Web Design Gallery for Webdesign Inspiration &#187; blog</title>
	<atom:link href="http://www.cssdance.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssdance.com</link>
	<description>Best css website gallery for Web Design Inspiration</description>
	<lastBuildDate>Sun, 04 Dec 2011 05:41:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Simple IE6 Blocker/ IE6 Alert using CSS</title>
		<link>http://www.cssdance.com/simple-ie6-blocker-ie6-alert-using-css/</link>
		<comments>http://www.cssdance.com/simple-ie6-blocker-ie6-alert-using-css/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 05:08:06 +0000</pubDate>
		<dc:creator>Alaik</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[ie6 alert]]></category>
		<category><![CDATA[ie6 blocker]]></category>
		<category><![CDATA[no IE6]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.cssdance.com/?p=1654</guid>
		<description><![CDATA[If you&#8217;re a web designer or a web developer, I believe, IE6 is one of your nightmare  I won&#8217;t explain what the reason are, because most of you probably know better than me. But for those of you who really-really don&#8217;t know (oh .. c&#8217;mon guys :p) you can find the answer from one of [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a web designer or a web developer,  I believe, IE6 is one of your nightmare  <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /><br />
<em> </em>I won&#8217;t explain what the reason are, because most of you probably know better than me.<br />
But for those of you who really-really don&#8217;t know<em> (oh .. c&#8217;mon guys :p)</em> you can find the answer from one of these websites :  <a href="http://www.ie6nomore.com/"><strong>IE6 no more</strong></a>, <a href="http://www.bringdownie6.com/"><strong>Bring down IE6</strong></a> , <a href="http://mashable.com/2009/08/07/ie6-must-die-2/"><strong>IE6 must die</strong> </a>, <a href="http://www.google.co.id/search?q=no+IE6+campaign">etc</a></p>
<p><strong>Yes, we should stop supporting IE6! </strong>It is wasting time and effort just to find a way to make your website work properly in IE6 , because the problem is with the browser, not you.<br />
But should we do nothing? I mean, really do nothing technically? Then leave the website be broken in IE6?<br />
Then, I think I agree with <a href="http://css-tricks.com/ie-6-blocker-script/" target="_blank">chris</a>. The better way is, we should inform our visitor that we are going to stop supporting IE6.</p>
<p>Ok, So how&#8217;s to do that?</p>
<p>There&#8217;s a few methods available out there. Few of them using javascript and some were using php. And maybe you also have found your own method.<br />
But now I am here want to share about how to create IE alert / IE6 blocker script using just 1 (one ) CSS + 1 (one) image file (which is I think is the lightetst, fastest and easiest method).</p>
<p>Ok. let&#8217;s do it</p>
<p>Firstly, we need to create an image file with your IE6 warning message inside, such as<em> &#8220;hey you&#8217;re using an old, crappy browser&#8221;</em>, or <em>&#8220;Your browser is outdated&#8221;</em> or anyelses. You can use photoshop, GIMP or any other image editing software you like to make it and you can save the format in .jpg, png or .gif.</p>
<div id="attachment_1704" class="wp-caption alignnone" style="width: 558px"><a href="http://www.cssdance.com/demo/ie6blocker/images/ie6.png"><img class="size-full wp-image-1704" title="stopie6" src="http://www.cssdance.com/wp-content/uploads/2010/01/stopie6.png" alt="Stop IE6" width="548" height="363" /></a><p class="wp-caption-text">Stop IE6</p></div>
<p>Take alook at my IE6 warning image above, it&#8217;s simple, right? <em>( I&#8217;ve included the psd source files for this image, so you can easily edit it using photoshop or GIMP and make your own version)</em></p>
<p>Ok, next.</p>
<p>Now we need to create a css file that will call the image when IE6 used.<br />
You can name it <strong>ie6.cvss</strong>,<strong> ie6hack.css</strong> or any else  then copy paste these lines to the file :</p>
<p><code>body , div, span, applet, object, iframe,<br />
h1, h2, h3, h4, h5, h6, p, blockquote, pre,<br />
a, abbr, acronym, address, big, cite, code,<br />
del, dfn, em, font, img, ins, kbd, q, s, samp,<br />
small, strike, strong, sub, sup, tt, var,<br />
dl, dt, dd, ol, ul, li,<br />
fieldset, form, label, legend,<br />
table, caption, tbody, tfoot, thead, tr, th, td {<br />
display: none;<br />
}<br />
body {<br />
background: url(../images/ie6.png) center no-repeat ;<br />
}</code><br />
The last step, we need to include the css file, and make the image appear only when visitor opening your website with IE6.<br />
Add this IE6 css conditional comment to the &lt;HEAD&gt; section of your html file :</p>
<p><code>&lt;!--[if IE 6]&gt;&lt;link rel="stylesheet" href="css/ie6.css" type="text/css"/&gt;&lt;![endif]--&gt;</code></p>
<p><code><!--[if IE 6]></p>
<link rel="stylesheet" href="css/ie6.css" mce_href="css/ie6.css" type="text/css" /><![endif]--></code>
<p>And,  tadaa !! It finished <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  Now your visitors who still using IE6 will no longer see your content.<br />
It&#8217;s super easy right?</p>
<p>You can see the <a href="http://www.cssdance.com/demo/ie6blocker/" target="_blank"><strong>demo</strong> </a><a href="http://www.cssdance.com/demo/ie6blocker/"><strong>here </strong></a>or<strong> <a href="http://www.cssdance.com/?download=IE6%20Blocker">download the source file</a></strong> from <a href="http://www.cssdance.com/?download=IE6%20Blocker"><strong>here</strong></a></p>
<p><em>* Credits :</em><em> Eric meyer for <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" target="_blank"><strong>css reset </strong></a>rules and <a href="http://www.morcha.net/post/46.html"><strong>morcha </strong></a>for nice and modern, glossy browser icons</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssdance.com/simple-ie6-blocker-ie6-alert-using-css/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>20+ CSS Gallery feeds you should subscribe to</title>
		<link>http://www.cssdance.com/20-css-gallery-feeds-you-should-subscribe-to/</link>
		<comments>http://www.cssdance.com/20-css-gallery-feeds-you-should-subscribe-to/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 10:33:02 +0000</pubDate>
		<dc:creator>Alaik</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[cssgallery]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[opml]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.cssdance.com/?p=1203</guid>
		<description><![CDATA[Download CSSGallery OPML I love cssgallery. When I&#8217;m running out of inspiration, I do not go to the beach, but I&#8217;ll open my feed reader, spending time there, watching latest design submission of my favorite css gallery feeds. Within 15-30 minutes I usually will feel more refreshed and got new inspiration that can be poured [...]]]></description>
			<content:encoded><![CDATA[<div style="margin: 0pt 0pt 10px 10px; width: 150px; height: 200px; float: right;"><a href="http://www.cssdance.com/?download=CSSGalleryOPML"><img src="http://www.cssdance.com/images/download.png" alt="Download CSSGallery OPML" /><br />
<strong>Download CSSGallery OPML </strong></a></div>
<p><strong>I love cssgallery.</strong> When I&#8217;m running out of inspiration, I do not go to the beach, but I&#8217;ll open my feed reader, spending time there, watching latest design submission of my favorite css gallery feeds.<br />
Within 15-30 minutes I usually will feel more refreshed and got new inspiration that can be poured into a new design idea / mockup.<em> Pretty simple, huh?</em></p>
<p>I am sure that some of you may have done the same way, and I think you will agree with me that this method is far more efficient when compared to, go to the beach, mountains <em>(unless otherwise using this way you still do not get your inspiration, then go ahead, just go to the beach or mountain <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> ), </em>meet someone specials, or other inspirational events / places, that may more time consuming and also need more money :p</p>
<p>However, there is a problem. Not all CSS Galleries have a<strong> good feed format for rss fans.</strong><br />
I&#8217;ve tried and reviewed more than 200 css gallery feeds and found the fact that only a few of them, using a good feed format.  Some of them displaying their gallery items as a <strong>&#8220;too&#8221;</strong> small image thumbnail<em> (that is difficult to see the details of design without visiting the websites)</em>, or some of them even just simply put a description text of each item without showing any images <em>(I certainly was not going to subscribe to feed like this</em><em>).</em></p>
<p>In my opinion, a good format for a css gallery is, the gallery items/images should be displayed in a sufficient images dimension<em> (having minimum 400 px width is a good start )</em>, to let users able to see the detail of the design item without having visiting the related website<em> (unless when you find a design that really makes you amazed)</em></p>
<p>From the criteria above, I decided to compile a list of css galleries  <em>(see below) </em>that meet my requirement<em> </em>and then share it with you<span id="ws1024" onclick="wsPlainClicked('ws1024')" onmouseover="wsPlainMouseOver('ws1024')" onmouseout="wsPlainMouseOut('ws1024')"> <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></p>
<p>You can click the RSS link that I put in the end of each CSS Gallery item, to subscribe to the CSSGallery. Or alternatively, just download my CSS <a href="http://www.cssdance.com/?download=CSSGalleryOPML"><strong>Gallery OPML file.</strong></a></p>
<p>This OPML file will allow you to import all CSSGallery feeds listed below, into your favorite feedreader such as Google reader, FeedDemon, netvibes etc., <strong>at one time</strong>. Simply import it from your favorite feed reader. This should be easy. Good luck <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<table border="0" cellspacing="0" cellpadding="5" width="550">
<tbody>
<tr>
<td style="background:#111;color:#FFF;" width="4%"></td>
<td style="background:#111;color:#FFF;" width="44%"><strong>Css Gallery </strong></td>
<td style="background:#111;color:#FFF;" width="40%"><strong>Screenshot Size (px) </strong></td>
<td style="background:#111;color:#FFF;" width="12%"><strong>Feed<br />
</strong></td>
</tr>
<tr>
<td align="right">1</td>
<td><a rel="nofollow" href="http://www.unmatchedstyle.com/" target="_blank">unmatchedstyle</a></td>
<td>453 x 291</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/UnmatchedStyle" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">2</td>
<td><a rel="nofollow" href="http://cssremix.com/" target="_blank">cssremix</a></td>
<td>902 x 320</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/cssremix" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">3</td>
<td><a rel="nofollow" href="http://www.cssstyle.me/" target="_blank">cssstyle.me</a></td>
<td>400 x 300</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/Cssstyleme" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">4</td>
<td><a rel="nofollow" href="http://www.designbombs.com/" target="_blank">designbombs</a></td>
<td>611 x 238</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/DesignBombs" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">5</td>
<td><a rel="nofollow" href="http://cartfrenzy.com/" target="_blank">cartfrenzy</a></td>
<td>560 x 320</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/cartfrenzy" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">6</td>
<td><a rel="nofollow" href="http://minimalexhibit.com/" target="_blank">minimalexhibit</a></td>
<td>560 x 320</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/minimalexhibit" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">7</td>
<td><a rel="nofollow" href="http://foliofocus.com/">foliofocus</a></td>
<td>560 x 320</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/foliofocus" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a><a href="http://feeds2.feedburner.com/foliofocus"></a></td>
</tr>
<tr>
<td align="right">8</td>
<td><a rel="nofollow" href="http://blogdesignheroes.com/" target="_blank">blogdesignheroes</a></td>
<td>560 x 320</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/blogdesignheroes" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">9</td>
<td><a rel="nofollow" href="http://www.cssfreshblend.com/">cssfreshbelend</a></td>
<td>570 x 270</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/CssFreshblendGallery" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">10</td>
<td><a rel="nofollow" href="http://www.cssburst.com/" target="_blank">cssburst</a></td>
<td>710 x 533</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/cssburst/ohZx" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">11</td>
<td><a rel="nofollow" href="http://www.swellcss.com/" target="_blank">swellcss</a></td>
<td>500 x 351</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/Swellcss" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">12</td>
<td><a rel="nofollow" href="http://www.cssdance.com.com/" target="_blank">cssdance</a></td>
<td>422 x 242</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/cssdance" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">13</td>
<td><a rel="nofollow" href="http://www.bestcssgallery.com/" target="_blank">bestcssgallery</a></td>
<td>513 x 320</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/BestCSSGallery" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">14</td>
<td><a rel="nofollow" href="http://en.dot-design.fr/galerie-css" target="_blank">dot-design</a></td>
<td>440 x 300</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/dotdesign-galeriecss" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">15</td>
<td><a rel="nofollow" href="http://www.cssdsgn.com/" target="_blank">cssdsgn</a></td>
<td>420 x 320</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/cssdsgn" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">16</td>
<td><a rel="nofollow" href="http://bestwebgallery.com/" target="_blank">bestwebgalllery</a></td>
<td>470 x 160</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/BestWebGallery" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">17</td>
<td><a rel="nofollow" href="http://www.mobileawesomeness.com/" target="_blank">mobileawesomeness</a></td>
<td>416 x 318</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/MobileAwesomenessGallery" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">18</td>
<td><a rel="nofollow" href="http://onepagelove.com/" target="_blank">onepagelove</a></td>
<td>400 x 211</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/OnePageLove" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">19</td>
<td><a rel="nofollow" href="http://www.wooki.es/">wookies</a></td>
<td>500 x 300</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/Wookies" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">20</td>
<td><a rel="nofollow" href="http://cssbuilt.com/">cssbuilt</a></td>
<td>638 x188</td>
<td><a rel="nofollow" href="http://cssbuilt.com/feed/" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
</tbody>
</table>
<h2>Other great resources</h2>
<p>These following websites are also worth it to subscribe to (because of their popularity and quality), but I didn&#8217;t include them in the OPML file, just because of their size of feed images are smaller than 400 pixels. So it&#8217;s up to you <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<table border="0" cellspacing="0" cellpadding="5" width="550">
<tbody>
<tr>
<td style="background:#111;color:#FFF;" width="4%"></td>
<td style="background:#111;color:#FFF;" width="44%"><strong>Css Gallery </strong></td>
<td style="background:#111;color:#FFF;" width="40%"><strong>Screenshot Size (px) </strong></td>
<td style="background:#111;color:#FFF;" width="12%"><strong>Feed<br />
</strong></td>
</tr>
<tr>
<td align="right">1</td>
<td><a rel="nofollow" href="http://www.webcreme.com/" target="_blank">WebCreme</a></td>
<td>200 x 88</td>
<td><a rel="nofollow" href="http://feeds.feedburner.com/WebCreme" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">2</td>
<td><a rel="nofollow" href="http://creattica.com/" target="_blank">Creattica</a></td>
<td>320 x 360</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/creattica-css" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
<tr>
<td align="right">3</td>
<td><a rel="nofollow" href="http://cssmania.com/" target="_blank">Cssmania</a></td>
<td>320 x 217</td>
<td><a rel="nofollow" href="http://feeds2.feedburner.com/cssmania" target="_blank"><img src="http://www.cssdance.com/images/feed.png" alt="feed image" /></a></td>
</tr>
</tbody>
</table>
<p><em>* Did I not include your favorite feeds? Please let me know by writing a comment below. If it meets the criteria, I’ll inlude it the next post updates<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssdance.com/20-css-gallery-feeds-you-should-subscribe-to/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New Design, New Features</title>
		<link>http://www.cssdance.com/new-design-new-features/</link>
		<comments>http://www.cssdance.com/new-design-new-features/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 09:44:25 +0000</pubDate>
		<dc:creator>Alaik</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[blog item]]></category>

		<guid isPermaLink="false">http://www.cssdance.com/?p=1124</guid>
		<description><![CDATA[As you have probably noticed on Twitter, CssDance finally has got its new design. Hooraay Generally, there are not many significant changes, because the mission behind this revamps is, I just want to make CSSDance becoming a more usable css gallery, easier to use and give more benefits for its visitors and, of course for [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1146" class="wp-caption alignnone" style="width: 558px"><a href="http://www.cssdance.com/wp-content/uploads/2009/11/oldandnew1.jpg"><img class="size-full wp-image-1146" title="oldandnew" src="http://www.cssdance.com/wp-content/uploads/2009/11/oldandnew1.jpg" alt="oldandnew" width="548" height="311" /></a><p class="wp-caption-text">Old and New</p></div>
<p>As you have probably noticed on <a href="http://www.twitter.com/cssdance" target="_blank"><strong>Twitter</strong></a>, CssDance finally has got its new design. Hooraay <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Generally, there are not many significant changes, because the mission behind this revamps is, I just want to make CSSDance becoming a more usable css gallery, easier to use and give more benefits for its visitors and, of course for me too <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>As a start, the gallery items are now having a bigger screenshot size. It will be easier for you now to see design items, without further clicks or pop up windows.</p>
<p>Under each item, you will see  few informations related to the design itself, consist of the number of ratings for related items  (obtained from visitors of CSSDance), the delicious saved number, and also the amount of tweets for the items (based on bit.ly count) to let visitors know, how popular the design is.<br />
The screenshots size changes will also make the feed more usable. Because you will see a bigger screenshot in your feed reader so you don&#8217;t have to visit this website every time just to see new items. CSSDance &#8216;ll take them all to your desktop * <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<em><br />
* For you who have subscribed with CSSDsnce feed before, please update your feed url because we currently have moved to <a href="http://feedburner.com/cssdance" target="_blank"><strong>feedburner</strong></a>.</em></p>
<p>In addition, I also made some small changes such as changing the logo design, increasing font size base, enabling search form, adding new cssdance badge and other minor changes. I tried to make them all simple, easy to use but powerful.</p>
<p>And the last one. As you can see at the top right of page, there is a new menu item called<strong> &#8216;Blog&#8217;.</strong> What does it mean?</p>
<p>Yeah, I do blogging now <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Haha Not a really big thing. Who doesn&#8217;t have blog in this internet age? However this is a good start for me <img src='http://www.cssdance.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ok, last but not least, I hope you all will enjoy it,  and if you have a website, and you thought it&#8217;s  a beautiful website, don&#8217;t hesitate to submit it to CSSDance. I will review it first, and if it&#8217;s approved, you can put CSSDance badge on your website, to let your visitors know that your website has been recognized as a <strong>&#8220;true appealing website&#8221;</strong> by CssDance</p>
<p>Have fun !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssdance.com/new-design-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

