<?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>Desizn Tech &#187; CSS</title>
	<atom:link href="http://desizntech.info/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://desizntech.info</link>
	<description>Web Design, Development and Tech Blog</description>
	<lastBuildDate>Tue, 22 May 2012 16:39:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Recreating YouTube Search Form and Other Buttons Using CSS3</title>
		<link>http://desizntech.info/2010/08/recreating-youtube-search-form-and-other-buttons-using-css3/</link>
		<comments>http://desizntech.info/2010/08/recreating-youtube-search-form-and-other-buttons-using-css3/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 18:06:50 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[CSS3 Button]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[input]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=6631</guid>
		<description><![CDATA[CSS3 could not get here any faster. Lately, there has been a lot of post about CSS3. It&#8217;s wonderful features are too good not to use. Only folks at Microsoft do not seem to have the grasp of that concept. They could have supported CSS3 for Internet Explorer 8. However, that is another discussion. In [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>CSS3 could not get here any faster. Lately, there has been a lot of post about CSS3. It&#8217;s wonderful features are too good not to use. Only folks at Microsoft do not seem to have the grasp of that concept. They could have supported CSS3 for Internet Explorer 8. However, that is another discussion. In this post, we are using some CSS3 properties to create buttons and forms and show you how to enhance user experience.<br />
<span id="more-6631"></span><br />
<img class="alignnone size-full wp-image-6634" title="01_preview" src="http://desizntech.info/wp-content/uploads/2010/07/01_preview.jpg" alt="" width="500" height="375" /></p>
<p style="text-align: center;"><a class="downloadlink" href="http://desizntech.info/demo/css3_button/index.html" target="_blank">Live Demo</a> |<a class="downloadlink" href="http://desizntech.info/wp-content/plugins/download-monitor/download.php?id=28" title=" downloaded 592 times" >CSS3 Buttons Download</a></p>
<p><img title="01_tube" src="http://desizntech.info/wp-content/uploads/2010/08/01_tube.jpg" alt="" width="500" height="50" /><br />
Here is the HTML structure first.</p>
<pre class="brush: xml; title: ; notranslate">
 &lt;p&gt;
&lt;input id=&quot;searchbox&quot; class=&quot;searchfield&quot; type=&quot;text&quot; name=&quot;q&quot; size=&quot;19&quot; value=&quot;Type Keywords...&quot; onfocus=&quot;if (this.value == 'Type Keywords...') {this.value = '';}&quot; onblur=&quot;if (this.value == '') {this.value = 'Type Keywords...';}&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;
&lt;input  type=&quot;submit&quot; value=&quot;Search&quot; class=&quot;searchbutton&quot; /&gt;
&lt;/p&gt;
</pre>
<p>We added a little javascript <a href="http://www.htmlcodetutorial.com/document/_BODY_onFocus.html" target="_self">onfoucs</a> and onblur to give user hint . The rest simple HTML.  Now the CSS.</p>
<pre class="brush: plain; title: ; notranslate">
.searchfield{
border:1px solid #000;
 width:200px;
height:2.5em;
padding-bottom:3px;
}
input:focus.searchfield {border-color:#c8d9f2;}
 .searchbutton{
position:relative;
top:-1px;
font-size:14px;
height:2.5em;
vertical-align:top;
white-space:nowrap;
cursor:pointer;
overflow:visible;
border:1px solid #ccc;
background:#f6f6f6;
background-image:-moz-linear-gradient(top,#ffffff,#efefef); // CSS3  background property
background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#efefef));
// Internet Explorer Gradient Filter http://bit.ly/bVJJP1
filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#ffffff,endColorStr=#efefef);
-ms-filter:&quot;progid:DXImageTransform.Microsoft.Gradient(startColorStr=#FFFFFF, endColorStr=#EFEFEF)&quot;;
-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px; // CSS3 rounded conrners
}
</pre>
<p>A little explanation about the CSS.  For the background we are using CSS3 gradient property for both Gecko (Firefox) and Webkit (Safari, Chrome) browser. You have define your gradient a little differently for each  browser.</p>
<p><img title="css3_explaind" src="../wp-content/uploads/2010/08/css3_explaind.jpg" alt="" width="500" height="340" /></p>
<p>So, what about Internet Explorer? By default it does not support rounded corner. However you can use<a href="http://msdn.microsoft.com/en-us/library/ms532997%28VS.85%29.aspx" target="_blank"> gradient filter</a> for IE. The gradient color rendering in IE7 or IE8 is very ugly. -ms-filter is for Microsoft vendor extension. Read more about <a href="http://blogs.msdn.com/b/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx" target="_blank">here</a>. The result should look like this</p>
<p><img title="02_tube" src="http://desizntech.info/wp-content/uploads/2010/08/02_tube.jpg" alt="" width="500" height="80" /></p>
<p>Further Reading:</p>
<ul>
<li><a href="https://developer.mozilla.org/en/CSS/-moz-linear-gradient" target="_blank">-moz-linear-gradient</a></li>
<li><a href="http://developer.apple.com/safari/library/documentation/internetweb/conceptual/safarivisualeffectsprogguide/index.html" target="_blank">Safari CSS Visual Effects Guide: Gradients</a></li>
</ul>
<p>Now, you can get creative with it. You can also define the active state of the button  using the <strong>:active</strong> property.</p>
<pre class="brush: plain; title: ; notranslate">
/*-------------- Button Style 2 -------------*/
		.searchfield_a{border:1px solid #ddd; width:200px; height:2.0em; padding-bottom:4px; color:#999; font-size:14px;}
		.searchbutton_a{color :#666;background :#def9ff; background :-moz-linear-gradient(top,#def9ff,#cbe4ec);background-image : -webkit-gradient(linear, left top, left bottom, from(#def9ff), to(#cbe4ec));filter :progid :DXImageTransform.Microsoft.Gradient(startColorStr=#def9ff),endColorStr=#cbe4ec);-ms-filter :&quot;progid :DXImageTransform.Microsoft.Gradient(startColorStr=#def9ff, endColorStr=#cbe4ec)&quot;; border :1px solid #c0d7e1;border-radius :3px;-moz-border-radius :3px;-webkit-border-radius :3px;cursor :pointer;font-family :&quot;Myriad Pro&quot;, Gerogia, serif;font-size :14px;font-weight :800;height :2.5em;overflow :visible;padding :0.5em 0.6em;text-transform :uppercase;vertical-align :top; white-space :nowrap;}
	.searchbutton_a:hover{cursor:pointer;border-color:#b9cfdb;outline:0;-moz-box-shadow:0 0 3px #aec3ce;-webkit-box-shadow:0 0 3px #aec3ce;box-shadow:0 0 3px #aec3ce;}
			/*-------------- Button Style 3 -------------*/
		.searchfield_b{border:1px solid #ddd; width:200px; height:2.0em; padding-bottom:4px; color:#999; font-size:14px;}
	   .searchbutton_b{color :#f2f2f2;background :#ff718a;background-image : -webkit-gradient(linear, left top, left bottom, from(#ff718a), to(#f98a7f));background-image :-moz-linear-gradient(top,#ff718a,#f98a7f); filter :progid :DXImageTransform.Microsoft.Gradient(startColorStr=#ffffff,endColorStr=#efefef);
-ms-filter :&quot;progid :DXImageTransform.Microsoft.Gradient(startColorStr=#FFFFFF, endColorStr=#EFEFEF)&quot;;border :1px solid #c97168;border-radius :3px;-moz-border-radius :3px;-webkit-border-radius :3px;cursor :pointer;font-family :&quot;Myriad Pro&quot;, Gerogia, serif;font-size :14px;font-weight :800;height :2.5em;overflow :visible;padding :0.5em 0.6em;text-transform :uppercase; vertical-align :top; white-space :nowrap;
}
		.searchbutton_b:hover{cursor:pointer;border-color:#d2766d;outline:0;-moz-box-shadow:0 0 5px #fb9196;-webkit-box-shadow:0 0 5px #fb9196;box-shadow:0 0 5px #fb9196;}
	input:focus.searchfield_a,input:focus.searchfield_b {border-color:#bbb;}
</pre>
<p><img class="alignnone size-full wp-image-6816" title="03_tube" src="http://desizntech.info/wp-content/uploads/2010/08/03_tube.jpg" alt="" width="500" height="119" /></p>
<p>We have also added a simple contact from that was created using CSS3. If there any question or suggestion please let us know in the comment.</p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2010/08/recreating-youtube-search-form-and-other-buttons-using-css3/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>20 Must Know Recent CSS and CSS3 Resources and Tools</title>
		<link>http://desizntech.info/2010/02/20-must-know-recent-css-css3-resources-and-tools/</link>
		<comments>http://desizntech.info/2010/02/20-must-know-recent-css-css3-resources-and-tools/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:29:53 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Round Up]]></category>
		<category><![CDATA[CSS menu]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=5650</guid>
		<description><![CDATA[CSS is always the easiest method to improve websites design and functionality. Moreover, The next version of CSS (CSS3) will revolutionize the way websites works. Except Internet Explorer most of the modern browsers supports CSS3 features. Here we present to you 20 recent CSS &#38; CSS3 tools and resources you need to be aware of [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>CSS is always the easiest method to improve websites design and functionality. Moreover, The next version of CSS <a href="http://www.css3.info/preview/" target="_blank">(CSS3)</a> will revolutionize the way websites works. Except<a href="http://techblog.procurios.nl/k/news/view/33224/14863/Testing-Internet-Explorer-8-CSS3-for-Web-Design.html" target="_blank"> Internet Explorer</a> most of the modern browsers supports CSS3 features. Here we present to you 20 recent CSS &amp; CSS3 tools and resources you need to be aware of as a web designer/developer.<br />
<span id="more-5650"></span><br />
You can check <a href="http://www.quirksmode.org/compatibility.html" target="_blank">here </a>what CSS3 features Internet Explorer supports. Although, none of the new exciting new features of CSS3 are supported, Microsoft Announced to support<a href="http://www.css3.info/microsoft-announces-css3-support-for-internet-explorer-9-ie9/" target="_blank"> CSS3 in Internet Explorer ( IE9</a>). Keep your finger crossed!</p>
<h2 class="post_title">Frameworks and Tools</h2>
<h2><a href="http://www.52framework.com/" target="_blank">HTML5 &amp; CSS3 Framework- 52 Framework</a></h2>
<p><a href="http://www.52framework.com/" target="_blank"><img class="alignnone size-full wp-image-5651" title="01_52frameworks" src="http://desizntech.info/wp-content/uploads/2010/02/01_52frameworks.jpg" alt="" width="500" height="206" /></a></p>
<h2><a href="http://html5doctor.com/html-5-reset-stylesheet/" target="_blank">HTML5 Reset Stylesheet</a></h2>
<p><a href="http://html5doctor.com/html-5-reset-stylesheet/" target="_blank"><img class="alignnone size-full wp-image-5662" title="04_css_reset" src="http://desizntech.info/wp-content/uploads/2010/02/04_css_reset.jpg" alt="" width="500" height="341" /></a></p>
<h2><a href="http://easyframework.com/" target="_blank">Easy Framework</a></h2>
<p><a href="http://easyframework.com/" target="_blank"><img class="alignnone size-full wp-image-5654" title="02_easyframework" src="http://desizntech.info/wp-content/uploads/2010/02/02_easyframework.jpg" alt="" width="500" height="217" /></a></p>
<h2>CSS Sorter</h2>
<p>CSS Sorter is a free online tool that organizes CSS rules  alphabetically so that it is be easier to maintain your CSS files.</p>
<p><a href="http://csssorter.appspot.com/" target="_blank"><img class="alignnone size-full wp-image-5656" title="03_css_sorter" src="http://desizntech.info/wp-content/uploads/2010/02/03_css_sorter.jpg" alt="" width="500" height="230" /></a></p>
<h2><a href="http://ajaxian.com/archives/heliumcss?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+ajaxian+%28Ajaxian+Blog%29" target="_blank">Helium-css</a></h2>
<p>Helium is a tool for discovering unused CSS across many pages on a web site. The tool is javascript-based and runs from the browser.</p>
<p><a href="http://ajaxian.com/archives/heliumcss?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+ajaxian+%28Ajaxian+Blog%29" target="_blank"><img class="alignnone size-full wp-image-5664" title="05_heliumcss" src="http://desizntech.info/wp-content/uploads/2010/02/05_heliumcss.jpg" alt="" width="500" height="300" /></a></p>
<h2 class="post_title">Tutorials and Resources</h2>
<h2><a href="http://designshack.co.uk/tutorials/introduction-to-css3-part-1-what-is-it" target="_blank"> Introduction to CSS3 and Resources </a></h2>
<p><a href="http://designshack.co.uk/tutorials/introduction-to-css3-part-1-what-is-it" target="_blank"><img class="alignnone size-full wp-image-5674" title="11_intro" src="http://desizntech.info/wp-content/uploads/2010/02/11_intro.jpg" alt="" width="500" height="319" /></a></p>
<h2><a href="http://www.netmag.co.uk/zine/develop-css/get-the-best-out-of-css3" target="_blank">Get the Best out of CSS3</a></h2>
<p><a href="http://www.netmag.co.uk/zine/develop-css/get-the-best-out-of-css3" target="_blank"><img class="alignnone size-full wp-image-5666" title="06_css3best" src="http://desizntech.info/wp-content/uploads/2010/02/06_css3best.jpg" alt="" width="500" height="181" /></a></p>
<h2><a href="http://www.james-blogs.com/2009/07/31/multi-columned-layouts-in-css3/" target="_blank">Multi Columned Layouts in CSS3</a></h2>
<p><a href="http://www.james-blogs.com/2009/07/31/multi-columned-layouts-in-css3/" target="_blank"><img class="alignnone size-full wp-image-5668" title="07_css3_column" src="http://desizntech.info/wp-content/uploads/2010/02/07_css3_column.jpg" alt="" width="500" height="297" /></a></p>
<h2><a href="http://www.romancortes.com/blog/pure-css-coke-can/" target="_blank">Pure CSS3 Rotating Coke Can</a></h2>
<p>View Source on <a href="http://www.romancortes.com/ficheros/css-coke.html" target="_blank">this page</a> to see how it it done.</p>
<p><a href="http://www.romancortes.com/blog/pure-css-coke-can/" target="_blank"><img class="alignnone size-full wp-image-5669" title="08_cokecan" src="http://desizntech.info/wp-content/uploads/2010/02/08_cokecan.jpg" alt="" width="500" height="397" /></a></p>
<h2><a href="http://www.queness.com/post/1696/create-a-beautiful-looking-custom-dialog-box-with-jquery-and-css3" target="_blank">Beautiful Looking Custom Dialog Box With jQuery and CSS3</a></h2>
<p><a href="http://www.queness.com/post/1696/create-a-beautiful-looking-custom-dialog-box-with-jquery-and-css3" target="_blank"><img class="alignnone size-full wp-image-5670" title="09_popup" src="http://desizntech.info/wp-content/uploads/2010/02/09_popup.jpg" alt="" width="500" height="256" /></a></p>
<h2><a href="http://www.pvmgarage.com/en/2010/01/how-to-create-depth-and-nice-3d-ribbons-only-using-css3/" target="_blank">Depth And Nice 3D Ribbons Only Using CSS3</a></h2>
<p><a href="http://www.pvmgarage.com/en/2010/01/how-to-create-depth-and-nice-3d-ribbons-only-using-css3/" target="_blank"><img class="alignnone size-full wp-image-5672" title="10_css3_ribbon" src="http://desizntech.info/wp-content/uploads/2010/02/10_css3_ribbon.jpg" alt="" width="499" height="369" /></a></p>
<h2><a href="http://www.nitinh.com/2010/01/drop-shadow-in-images-no-extra-markup/" target="_blank">Drop Shadow in Images : No extra markup</a></h2>
<p><a href="http://www.nitinh.com/2010/01/drop-shadow-in-images-no-extra-markup/" target="_blank"><img class="alignnone size-full wp-image-5676" title="13_image_shadow" src="http://desizntech.info/wp-content/uploads/2010/02/13_image_shadow.jpg" alt="" width="500" height="324" /></a></p>
<h2><a href="http://www.webdeveloperjuice.com/2010/01/17/star-rating-using-css-sprite-and-jquery-demo/" target="_blank">Star Rating Using CSS Sprite and jQuery</a></h2>
<p><a href="http://www.webdeveloperjuice.com/2010/01/17/star-rating-using-css-sprite-and-jquery-demo/" target="_blank"><img class="alignnone size-full wp-image-5675" title="12_star" src="http://desizntech.info/wp-content/uploads/2010/02/12_star.jpg" alt="" width="500" height="234" /></a></p>
<h2><a href="http://www.wittysparks.com/2009/09/21/build-multi-level-multi-column-multi-menus-with-pure-css/" target="_blank">Multi-level Multi-column Multi Menus with Pure CSS</a></h2>
<p><a href="http://www.wittysparks.com/2009/09/21/build-multi-level-multi-column-multi-menus-with-pure-css/" target="_blank"><img class="alignnone size-full wp-image-5677" title="14_multi_menu" src="http://desizntech.info/wp-content/uploads/2010/02/14_multi_menu.jpg" alt="" width="500" height="227" /></a></p>
<h2><a href="http://www.romancortes.com/blog/css-paper-bird/" target="_blank">CSS Paper Bird</a></h2>
<p>View the <a href="http://www.romancortes.com/ficheros/paperbird.html" target="_blank">source on this page</a> to see how it is done.</p>
<p><a href="http://www.romancortes.com/ficheros/paperbird.html" target="_blank"><img class="alignnone size-full wp-image-5679" title="15_paper_bird" src="http://desizntech.info/wp-content/uploads/2010/02/15_paper_bird.jpg" alt="" width="500" height="423" /></a></p>
<h2><a href="http://www.frederikvig.com/2010/02/guide-to-font-sizing-with-css/">Guide to Font Sizing with CSS</a></h2>
<p><a href="http://www.frederikvig.com/2010/02/guide-to-font-sizing-with-css/" target="_blank"><img class="alignnone size-full wp-image-5681" title="16_font" src="http://desizntech.info/wp-content/uploads/2010/02/16_font.jpg" alt="" width="500" height="350" /></a></p>
<h2><a href="http://www.webcredible.co.uk/user-friendly-resources/web-dev/css-important.shtml" target="_blank">The Importance of the !important CSS Declaration</a></h2>
<p><a href="http://www.webcredible.co.uk/user-friendly-resources/web-dev/css-important.shtml" target="_blank"><img class="alignnone size-full wp-image-5682" title="17_cssimportant" src="http://desizntech.info/wp-content/uploads/2010/02/17_cssimportant.jpg" alt="" width="500" height="249" /></a></p>
<h2><a href="http://shinylittlething.com/2010/01/20/css-minification-on-the-fly/" target="_blank">CSS Minification on the Fly</a></h2>
<p><a href="http://shinylittlething.com/2010/01/20/css-minification-on-the-fly/" target="_blank"><img class="alignnone size-full wp-image-5683" title="18_css_minified" src="http://desizntech.info/wp-content/uploads/2010/02/18_css_minified.jpg" alt="" width="500" height="160" /></a></p>
<h2><a href="http://www.vcarrer.com/2010/01/css-shorthand-clockwise-rule.html" target="_blank">CSS Shorthand Clockwise Rule</a></h2>
<p><a href="http://www.vcarrer.com/2010/01/css-shorthand-clockwise-rule.html" target="_blank"><img class="alignnone size-full wp-image-5684" title="19_css_rule" src="http://desizntech.info/wp-content/uploads/2010/02/19_css_rule.jpg" alt="" width="500" height="410" /></a></p>
<h2><a href="http://deepubalan.com/blog/2010/01/18/cool-sprites-free-overlapped-css-menu-using-css-sprites/" target="_blank">Overlapped CSS Menu Using CSS Sprites</a></h2>
<p><a href="http://deepubalan.com/blog/2010/01/18/cool-sprites-free-overlapped-css-menu-using-css-sprites/" target="_blank"><img class="alignnone size-full wp-image-5685" title="20_css_menu" src="http://desizntech.info/wp-content/uploads/2010/02/20_css_menu.jpg" alt="" width="500" height="213" /></a></p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2010/02/20-must-know-recent-css-css3-resources-and-tools/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Ultimate CSS List Creation Methods and Examples</title>
		<link>http://desizntech.info/2009/11/ultimate-css-list-creation-methods-and-examples/</link>
		<comments>http://desizntech.info/2009/11/ultimate-css-list-creation-methods-and-examples/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 23:46:46 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=5118</guid>
		<description><![CDATA[CSS list is very useful and vital in web design. There are many uses of Unordered list (&#60;ul&#62;) such as horizontal navigation, vertical navigation, creating a box or any kind of list. In this post we will show you some really useful CSS list methods that you can use to create horizontal, vertical list or [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>CSS list is very useful and vital in web design. There are many uses of  <a href="http://www.w3schools.com/tags/tag_ul.asp" target="_blank">Unordered list (&lt;ul&gt;)</a> such as horizontal navigation, vertical navigation, creating a box or any kind of list. In this post we will show you some really useful CSS list methods that you can use to create horizontal, vertical list or CSS list box.  You can download all the methods used in this post in single zipped file.<br />
<span id="more-5118"></span><br />
Before we create anything lets see how CSS lists are used:<br />
<a href="http://www.eeci2009.com/" target="_blank"><img class="alignnone size-full wp-image-5194" title="07_expresssion" src="http://desizntech.info/wp-content/uploads/2009/11/07_expresssion.jpg" alt="07_expresssion" width="500" height="142" /></a><br />
<a href="http://97bottles.com/" target="_blank"><img class="alignnone size-full wp-image-5195" title="97_bottels" src="http://desizntech.info/wp-content/uploads/2009/11/97_bottels.jpg" alt="97_bottels" width="500" height="206" /></a><br />
<a href="http://www.matthamm.com/" target="_blank"><img class="alignnone size-full wp-image-5196" title="10_mat" src="http://desizntech.info/wp-content/uploads/2009/11/10_mat.jpg" alt="10_mat" width="500" height="294" /></a><br />
<a class="downloadlink" href="http://www.desizntech.info/demo/ultimate_css_list/index.html" target="_blank"> View Demo </a> | <a class="downloadlink" href="http://desizntech.info/wp-content/plugins/download-monitor/download.php?id=13" title=" downloaded 1213 times" >Download CSS List Files </a><br />
For every list here is the basic HTML layout</p>
<pre>&lt;div id="the name of the id"&gt;
&lt;ul&gt;
&lt;li&gt; Item 1&lt;/li&gt;
&lt;li&gt; Item 2&lt;/li&gt;
&lt;li&gt; Item 3&lt;/li&gt;
&lt;li&gt; Item 4&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>Now we are going apply some CSS properties to turn it into a list, which can used for navigation or just a simple list.</p>
<h2 class="post_title">display: inline</h2>
<p><img class="alignnone size-full wp-image-5169" title="01_inline" src="http://desizntech.info/wp-content/uploads/2009/11/01_inline.jpg" alt="01_inline" width="500" height="200" /><br />
The first CSS propery we are going to use is inline. This is the CSS default display property  and will generate an inline box . There will be no break before or after and flowed as a single inline box. In simple words, they will displayed in one line, rather than two line.<br />
Here are the CSS we are applying the create the first horizontal list</p>
<pre>#horizontal_list {
	height: 20px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.45em;
	color: #8e9090;
}
#horizontal_list ul {
	margin: 0;
	padding: 0;

}
#horizontal_list ul li {
	display: inline;
	padding-left: 5px;
}
</pre>
<p>Here is how it should look like after applying the CSS  id=&#8221;horizontal_list&#8221; to the HTML<br />
<img class="alignnone size-full wp-image-5180" title="01_inline_result" src="http://desizntech.info/wp-content/uploads/2009/11/01_inline_result.jpg" alt="01_inline_result" width="500" height="200" /></p>
<h2 class="post_title">display:inline-block</h2>
<p>The same result also can be achived by using display:inline-block. The difference is that inline block generates a block box and all the properties as block can be applied. Here is a visual representation of the difference:<br />
<img class="alignnone size-full wp-image-5182" title="03_inline_vs_inlineblock" src="http://desizntech.info/wp-content/uploads/2009/11/03_inline_vs_inlineblock.jpg" alt="03_inline_vs_inlineblock" width="500" height="200" /><br />
Here is the CSS for second type of list ( height and width are left blank but can be applied if need.)</p>
<pre>#horizontal_list_2 ul {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.45em;
	color: #8e9090;
}
#horizontal_list_2 ul li {
	display: inline-block;
	padding-left: 5px;
	/*height and width can be added */
	/*
	 height: ;
	 width:;

	 */
}
</pre>
<p>The result would be same as display:inline unless block properties are added.</p>
<h2 class="post_title">float:left</h2>
<p>Chris wrote <a href="http://css-tricks.com/all-about-floats/" target="_blank">a great post </a> explaining what is float and how it works. One annoying thing about the floats is that  you must declare the height or sometime the float has to cleared so the elements below won&#8217;t ride up on the side. Regardless, float is one of the most used method for for CSS list. By default the CSS <a href="http://www.w3schools.com/CSS/pr_list-style-type.asp" target="_blank">list-style-type</a> is circle. if you to remove it use list-style-type:none property. So, here is the CSS:</p>
<pre>#horizontal_list_3 {
	height: 20px; /* without the height the elements below will float */
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.45em;
	color: #8e9090;
}
#horizontal_list_3 ul {
	margin: 0;
	padding: 0;

}
#horizontal_list_3 ul li {
	float: left;
	padding-left: 5px;
	margin-left:20px;
	clear: none !important; /* Below elements are not allowed to float */
	list-style-type:circle;
	/*list-style-type:none; */ /* For removing the list type */
}
</pre>
<p>Here is how it should look when the CSS is applied:<br />
<img class="alignnone size-full wp-image-5186" title="04_float" src="http://desizntech.info/wp-content/uploads/2009/11/04_float.jpg" alt="04_float" width="500" height="200" /></p>
<h2 class="post_title">Vertical list</h2>
<p>Vertical list are easier to create, but we will show you two different techniques that are useful.  First lets see the result and the CSS:<br />
<img class="alignnone size-full wp-image-5188" title="05_background_vs_list_image" src="http://desizntech.info/wp-content/uploads/2009/11/05_background_vs_list_image.jpg" alt="05_background_vs_list_image" width="500" height="312" /></p>
<pre>/*-------------------Vertical List 1---------------------*/

#vertical_list_1 {
	margin-left: 30px;
}
#vertical_list_1 ul {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.45em;
	color: #8e9090;
}
#vertical_list_1 ul li {
	padding-left: 8px;
	margin-left: 0;
	list-style-image: url("bullet_green.png");
}
/*-------------------Vertical List 2---------------------*/

#vertical_list_2 {
	margin-left: 5px;
}
#vertical_list_2 ul {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.45em;
	color: #8e9090;
}
#vertical_list_2 ul li {
	padding-left: 20px;
	margin-left: 0;
	list-style-image: none;
	list-style-type: none;
	background: url("bullet_orange.png") no-repeat;
	background-position: 0 4px;
}
</pre>
<p>The difference here is that <strong>list-style-image</strong> has a default distance from the image to the list text  and it can not be changed besides <a href="http://www.w3schools.com/Css/pr_list-style-position.asp" target="_blank">inside and outside value</a>. Whereas, using background and background-position the image can be moved left to right value (x value), up and down (y value).  There are also some other value such as : top, bottom and more. Check <a href="http://www.w3schools.com/css/pr_background-position.asp">the W3 specification </a> for all the value.</p>
<h2 class="post_title">Box using CSS List</h2>
<p>CSS list are also useful for creating box. Most commonly CSS box is used for the footer of websites. The trick behind creating a box is having a set width and height for each<strong> &lt;li&gt; element</strong>. We also use overflow:hidden property so any text won&#8217;t go out of the box . So here is the CSS:</p>
<pre>/*-------------- Verticle box -------------------*/
#vertical_list_box {
	margin-left: 5px;
}
#vertical_list_box ul {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.45em;
	color: #8e9090;
}
#vertical_list_box ul li {
	display: inline-block;
	clear: none; /* no floating *?
	background: #e7f4f8;
	width: 280px;
	height: 200px;
	overflow: hidden; /* hide if the text is too long *?
	margin-left: 4px;
	padding: 4px;
	list-style-image: none;
	list-style-type: none;
	-moz-border-radius: 5px;
       -webkit-border-radius: 5px;

}
</pre>
<p>The additional styles are in included file and here is how it should look like.<br />
<img class="alignnone size-full wp-image-5191" title="06_box_list" src="http://desizntech.info/wp-content/uploads/2009/11/06_box_list.jpg" alt="06_box_list" width="500" height="145" /></p>
<p>The are many more techniques that can be used to create beautiful lists.  Below are some useful reading and tutorials related to CSS list :</p>
<ul>
<li><a href="http://css.maxdesign.com.au/listutorial/" target="_blank">Listutorial</a> : Step by step CSS tutorials</li>
<li><a href="http://www.alistapart.com/articles/taminglists/" target="_blank">CSS Design: Taming Lists</a></li>
<li><a href="http://www.sohtanaka.com/web-design/css-ordered-list-enhancement-tutorial/" target="_blank">Sexy Ordered Lists with CSS</a></li>
<li><a href="http://green-beast.com/experiments/css_list_boxes.php" target="_blank">Mike’s Experiments &#8211; CSS: List Boxes</a></li>
<li><a href="http://www.projectseven.com/tutorials/css_menus/list_01/" target="_blank">Uberlink CSS List Menus</a></li>
<li><a href="http://buildinternet.com/2009/09/quick-tip-simplify-list-margins-with-css/" target="_blank">Simplify List Margins with CSS</a></li>
</ul>
<p>If there are any suggestions  or errors  in the post please feel free to add it in the comments .</p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2009/11/ultimate-css-list-creation-methods-and-examples/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>10 Image Free Sexy CSS Menu and How to Create One</title>
		<link>http://desizntech.info/2009/05/10-image-free-sexy-css-menu-and-how-to-create-one/</link>
		<comments>http://desizntech.info/2009/05/10-image-free-sexy-css-menu-and-how-to-create-one/#comments</comments>
		<pubDate>Thu, 21 May 2009 19:40:47 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[css rounded]]></category>
		<category><![CDATA[Menus]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=3101</guid>
		<description><![CDATA[It has been while since we did any CSS menu post here. Who said you can&#8217;t make sexy, cool looking menu with CSS ? Today we bring you 10 Free sexy CSS menu and tutorial on how to create one. As usual they are free for personal use. Most the of menus are created using [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>It has been while since we did any CSS menu post here.  Who said you can&#8217;t make sexy, cool looking menu with CSS ? Today we bring you 10 Free sexy CSS menu and tutorial on how to create one. As usual they are free for personal use. Most the of menus are created using using  CSS and CSS3 propety<em><code>-webkit-border-radius and </code><code>-moz-border-radius. </code></em>Obviously Internet Explorer does not support those properties. Too bad. However, for the sake of it one of the menus is using <a href="http://www.methvin.com/jquery/jq-corner.html" target="_blank">jQuery rounded corner plugin.</a> So, it is rounded crossbrowser.</p>
<p>Menus are test in Latest version of Firefox, Safari and IE7.<br />
<span id="more-3101"></span></p>
<h3>Please report any bugs or improvement.</h3>
<p>P.S. : Do not complain if the menus do not work in IE6. <a href="http://desizntech.info/2009/02/die-ie6-die-go-to-hell-already/" target="_blank">Not intended for it</a>.</p>
<h2><a href="http://desizntech.info/demo/CSS_menu/sexy_css_menu.html" target="_blank"><em>View Demo</em></a></h2>
<p><a class="downloadlink" href="http://desizntech.info/wp-content/plugins/download-monitor/download.php?id=6" title=" downloaded 12542 times" >Download Sexy CSS Menu</a> | <a class="downloadlink" href="http://www.4shared.com/file/107089617/c8b356c6/CSS_menu.html" target="_blank">Mirror</a><br />
<a href="http://desizntech.info/demo/CSS_menu/sexy_css_menu.html" target="_blank"><img class="alignnone size-full wp-image-3120" title="menu_preview_1" src="http://desizntech.info/wp-content/uploads/2009/05/menu_preview_1.jpg" alt="menu_preview_1" width="500" height="200" /></a></p>
<p><a href="http://desizntech.info/demo/CSS_menu/sexy_css_menu.html" target="_blank"><img class="alignnone size-full wp-image-3121" title="menu_preview_2" src="http://desizntech.info/wp-content/uploads/2009/05/menu_preview_2.jpg" alt="menu_preview_2" width="500" height="214" /></a></p>
<h2><em>How to create a Sexy CSS Menu?</em></h2>
<p>First you have your basic HTML Mark Up. You can wrap it around with a menu wrapper if you like.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul id=&quot;nav_rounded_white&quot;&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Bio&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt; Contact &lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>We get a simple menu list.<br />
<img class="alignnone size-full wp-image-3107" title="list1" src="http://desizntech.info/wp-content/uploads/2009/05/list1.jpg" alt="list1" width="388" height="162" /><br />
Now we need to add the magical CSS. This creates a horizontal menu.</p>
<pre class="brush: css; title: ; notranslate">
#nav_rounded_white {
background:#fff;
padding:10px 0px 0px 20px;
height:40px;
width:auto;
list-style: none;
text-transform: lowercase;
font-family: arial, &quot;lucida console&quot;, sans-serif;   }

#nav_rounded_white ul {
margin: 0;
padding: 0;   }

#nav_rounded_white li {
float: left;
margin: 0;
padding:0px 10px 0px 0px;   }  </pre>
<p>Now we get a horizontal menu.  <img class="alignnone size-full wp-image-3108" title="horizontal_menu" src="http://desizntech.info/wp-content/uploads/2009/05/horizontal_menu.jpg" alt="horizontal_menu" width="500" height="106" /> Now we need to add some flavor to it. Change the color as you like.</p>
<pre class="brush: css; title: ; notranslate">
#nav_rounded_white a {
display:block;
line-height: 30px;
margin: 0;
padding: 0 20px 0 15px;
font-size: 18pt;
color:#fff;
letter-spacing:-1px;
text-decoration: none;
-moz-border-radius:10px;
-webkit-border-radius:10px;
background:#ccccbb;

}

#nav_rounded_white a:hover {
text-decoration:none;
background:#004455;
}
</pre>
<p>And Volia! We have sexy CSS Menu  <img class="alignnone size-full wp-image-3109" title="white_menu" src="http://desizntech.info/wp-content/uploads/2009/05/white_menu.jpg" alt="white_menu" width="500" height="91" /></p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2009/05/10-image-free-sexy-css-menu-and-how-to-create-one/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>Discover the &#8220;Cool&#8221; of CSS: 25 Advanced CSS Techniques</title>
		<link>http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/</link>
		<comments>http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 15:45:45 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips & Tools]]></category>
		<category><![CDATA[css advanced technique]]></category>
		<category><![CDATA[CSS effect]]></category>
		<category><![CDATA[simple css menu]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=1648</guid>
		<description><![CDATA[Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.  I prefer to use CSS, rather then JavaScript or Jquey, if the same functionality can achieved by CSS because it is most likely that some people might turn off JavaScript in their pages but not CSS. While [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3.org/Style/CSS/" target="_blank">Cascading Style Sheets</a> (CSS) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.  I prefer to use CSS, rather then JavaScript or Jquey, if the same functionality can achieved by CSS because it is most likely that some people might turn off JavaScript in their pages but not CSS. While some web designer might <a href="http://www.raizlabs.com/blog/?p=148" target="_blank">disagree </a>because of CSS&#8217;s lack of ability to make the web pages more dynamic I still think CSS is <a href="http://www.chromaticsites.com/blog/13-reasons-why-css-is-superior-to-tables-in-website-design/" target="_blank">the way</a> to go.<br />
<span id="more-1648"></span></p>
<h3><span style="text-decoration: underline;">1. CSS Gradient Text and Background </span></h3>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1771" title="css_gradient" src="http://desizntech.info/wp-content/uploads/2009/03/css_gradient.jpg" alt="css_gradient" width="500" height="411" /><br />
</span></p>
<p>Would not it be much better if you can use gradient background without using any image? It would make your page load faster.</p>
<ul>
<li> <a href="http://www.designdetector.com/2005/09/css-gradients-demo.php" target="_blank">CSS Gradients</a> using pure CSS</li>
<li><a href="http://www.tankedup-imaging.com/css_dev/css-gradient.html" target="_blank">Background</a> gradients and CSS</li>
</ul>
<p>How about Gradient Text ?</p>
<p><img class="aligncenter size-full wp-image-1660" title="gradient_text" src="http://desizntech.info/wp-content/uploads/2009/03/gradient_text.jpg" alt="gradient_text" width="379" height="132" /></p>
<ul>
<li><a href="http://www.webdesignerwall.com/tutorials/css-gradient-text-effect/" target="_blank">CSS Gradient Text Effect</a></li>
<li><a href="http://cssglobe.com/lab/textgradient/" target="_blank">Pure CSS Text Gradient </a></li>
</ul>
<h2><span style="text-decoration: underline;">2.Image Overlay Using Z-Index</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1662" title="z-index" src="http://desizntech.info/wp-content/uploads/2009/03/z-index.jpg" alt="z-index" width="270" height="177" /></span></p>
<p>The z-index property sets the stack order of an element. Using z-index  you can put one image or text on top of each other.</p>
<ul>
<li><a href="http://www.tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp" target="_blank">Understading  Z-Index </a></li>
<li><a href="http://www.quackit.com/css/properties/css_z-index.cfm" target="_blank">CSS Z-index</a></li>
</ul>
<h2><span style="text-decoration: underline;">3. Using the CSS Boder Creatively&nbsp;</p>
<p>&nbsp;</p>
<p></span></h2>
<p><img class="aligncenter size-full wp-image-1664" title="border" src="http://desizntech.info/wp-content/uploads/2009/03/border.jpg" alt="border" width="400" height="120" /></p>
<ul>
<li><a href="http://www.copysense.co.uk/border.php" target="_blank">CSS Box Border test</a> : This utility enables the sampling of Cascading Style Sheet (CSS) border styles, and creates the corresponding CSS code for implementation.</li>
<li><a href="http://www.css3.info/preview/border-image/" target="_blank">Border-image CSS3</a> only.</li>
<li> <a href="http://pmob.co.uk/pob/side-borders.htm" target="_blank">CSS Side Border</a> Image Using CSS.</li>
</ul>
<p><img class="aligncenter size-full wp-image-1704" title="star" src="http://desizntech.info/wp-content/uploads/2009/03/star.jpg" alt="star" width="256" height="236" /></p>
<ul>
<li><a href="http://phoenity.com/newtedge/scalable_star/" target="_self">Create a Scalable Star using using CSS border</a></li>
<li><a href="http://infimum.dk/HTML/slantinfo.html" target="_blank">Border Slants </a></li>
</ul>
<h2 class="title"><span style="text-decoration: underline;">4. A Cool CSS Effect &#8211; Dashboard </span></h2>
<p><img class="aligncenter size-full wp-image-1666" title="osx" src="http://desizntech.info/wp-content/uploads/2009/03/osx.jpg" alt="osx" width="450" height="387" /></p>
<ul>
<li>Create a<a href="http://dbachrach.com/blog/2006/10/09/a-cool-css-effect-dashboard/" target="_blank"> Dashboard</a> like effect using CSS.</li>
</ul>
<h2>5. <span style="text-decoration: underline;">Creating 2D/3D buttons using CSS</span></h2>
<table border="0">
<tbody>
<tr>
<td><img class="aligncenter size-full wp-image-1667" title="css_button" src="http://desizntech.info/wp-content/uploads/2009/03/css_button.jpg" alt="css_button" width="221" height="103" /></td>
<td><img class="aligncenter size-full wp-image-1668" title="css_button2" src="http://desizntech.info/wp-content/uploads/2009/03/css_button2.jpg" alt="css_button2" width="325" height="67" /></td>
</tr>
</tbody>
</table>
<p>Create some cool looking buttons using CSS only.</p>
<ul>
<li><a href="http://cssglobe.com/post/1614/4-uber-cool-css-techniques-for-links" target="_blank">3D Rollover Button using CSS</a></li>
<li><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html" target="_blank">How to make sexy buttons with CSS</a></li>
<li><a href="http://www.webcredible.co.uk/user-friendly-resources/css/rollover-buttons.shtml" target="_blank">CSS rollover buttons</a></li>
</ul>
<h2><span style="text-decoration: underline;">6. Text Embossing/Shadow Technique With CSS</span></h2>
<p>Using this technique you can create iPhone like embossed Text</p>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1674" title="CSS_emboss" src="http://desizntech.info/wp-content/uploads/2009/03/emboss7.png" alt="CSS_emboss" width="299" height="75" /></span></p>
<pre class="brush: css; title: ; notranslate">   1. text-shadow: 0px 1px 0px #e5e5ee;   </pre>
<ul>
<li><a href="http://www.reynoldsftw.com/2009/03/text-embossing-technique-with-css/" target="_blank">Text Embossing</a></li>
<li><a href="http://www.designmeme.com/articles/dropshadows/" target="_blank">CSS Text Drop Shadows</a></li>
</ul>
<h2><span style="text-decoration: underline;">7. Iconize Text links/Hyperlink with CSS</span></h2>
<p><span style="text-decoration: underline;"><br />
<img class="aligncenter size-full wp-image-1678" title="icon_text" src="http://desizntech.info/wp-content/uploads/2009/03/icon_text.jpg" alt="icon_text" width="333" height="102" /><br />
</span></p>
<ul>
<li><a href="http://pooliestudios.com/projects/iconize/">Add icon to the hyperlink.</a></li>
<li><a href="http://pooliestudios.com/projects/iconize/" target="_blank">Iconize Textlinks with CSS</a></li>
</ul>
<h2>8. <span style="text-decoration: underline;">CSS Curly Quotes</span></h2>
<p><img class="aligncenter size-full wp-image-1686" title="qoutes" src="http://desizntech.info/wp-content/uploads/2009/03/qoutes.jpg" alt="qoutes" width="500" height="135" /></p>
<ul>
<li><a href="http://www.designmeme.com/articles/csscurlyquotes/" target="_blank">Curly Quotes with Pure CSS</a></li>
<li><a rel="bookmark" href="http://24ways.org/2005/swooshy-curly-quotes-without-images">Swooshy Curly Quotes Without Images</a></li>
</ul>
<h2><span style="text-decoration: underline;">9. Using CSS Opacity for Various Cool Effects </span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1688" title="css_opacity_menu" src="http://desizntech.info/wp-content/uploads/2009/03/css_opacity_menu.jpg" alt="css_opacity_menu" width="500" height="168" /><br />
</span></p>
<ul>
<li><a href="http://www.cssplay.co.uk/menus/flyout_horizontal.html" target="_blank">A CSS only fly-out menu with transparency</a></li>
<li><a href="http://www.tankedup-imaging.com/css_dev/menu2.html" target="_blank">CSS Menu using CSS opacity property</a></li>
<li><a href="http://www.mandarindesign.com/opacityblending.html" target="_blank"><strong>Opacity Background Blending Effects</strong></a></li>
<p><img class="aligncenter size-full wp-image-1690" title="css_watermark" src="http://desizntech.info/wp-content/uploads/2009/03/css_watermark.jpg" alt="css_watermark" width="400" height="143" /></p>
<li><a href="http://www.freecssmenus.co.uk/menu_opacity.php" target="_blank">Transparency Menu Watermark on an image</a></li>
</ul>
<h2>10. Blurry Background Effect</h2>
<p><img class="aligncenter size-full wp-image-1693" title="blurry_bg" src="http://desizntech.info/wp-content/uploads/2009/03/blurry_bg.jpg" alt="blurry_bg" width="500" height="267" /></p>
<ul>
<li>CSS Guru Chris Coyier explains<a href="http://css-tricks.com/blurry-background-effect/" target="_blank"> h</a><a href="http://css-tricks.com/blurry-background-effect/" target="_blank">ow to create a blurry background using CSS</a></li>
</ul>
<h2>11. CSS Parallax Effect</h2>
<p><img class="aligncenter size-full wp-image-1695" title="parallax" src="http://desizntech.info/wp-content/uploads/2009/03/parallax.jpg" alt="parallax" width="497" height="180" /></p>
<ul>
<li><a href="http://forthelose.org/examples-of-and-how-to-do-the-css-parallax-effect" target="_blank">Examples of and How to Create the CSS Parallax Effect</a></li>
<li><a href="http://demo.marcofolio.net/a_parallax_illusion_with_css/" target="_blank">A parallax illusion with CSS: The Horse in Motion </a></li>
</ul>
<h2><span style="text-decoration: underline;">12.Create a Lightbox effect only with CSS</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1697" title="css_lightbox" src="http://desizntech.info/wp-content/uploads/2009/03/css_lightbox.jpg" alt="css_lightbox" width="400" height="213" /></span></p>
<ul>
<li>Here is another useful  <a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/" target="_blank">technique </a>that is using CSS and a little Javascript to create the lightbox effect.</li>
</ul>
<h2><span style="text-decoration: underline;">13.CSS-Only Accordion Effect</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1699" title="css_accordian" src="http://desizntech.info/wp-content/uploads/2009/03/css_accordian.jpg" alt="css_accordian" width="367" height="300" /></span></p>
<ul>
<li>This post explains how to <a href="http://www.cssnewbie.com/css-only-accordion/" target="_blank">create Accordion using CSS</a><span style="text-decoration: underline;"><br />
</span></li>
</ul>
<h2><span style="text-decoration: underline;">14. <span class="taggedlink">Add grunge Effect to Text Using Simple CSS </span></span></h2>
<p><span style="text-decoration: underline;"><span class="taggedlink"><a href="http://www.jankoatwarpspeed.com/post/2008/08/09/Add-grunge-effect-to-text-using-simple-CSS.aspx" target="_blank"><img class="aligncenter size-full wp-image-1701" title="grunge1" src="http://desizntech.info/wp-content/uploads/2009/03/grunge1.jpg" alt="grunge1" width="294" height="72" /></a></span></span></p>
<ul>
<li>In this short <a href="http://www.jankoatwarpspeed.com/post/2008/08/09/Add-grunge-effect-to-text-using-simple-CSS.aspx" target="_blank">tutorial </a>you will see how to add grunge effect to your text using just CSS and one image.</li>
</ul>
<h2><span style="text-decoration: underline;"><span class="taggedlink">15.</span>Create a Block Hover /Element Hover Effect</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1707" title="block_hover" src="http://desizntech.info/wp-content/uploads/2009/03/block_hover.jpg" alt="block_hover" width="430" height="283" /></span></p>
<ul>
<li><a href="http://www.smileycat.com/miaow/archives/000230.php" target="_blank">Learn how to create  a block hover effect for a list of links</a></li>
<li><a href="http://phoenity.com/newtedge/element_hover/" target="_blank">CSS element hover effect.</a></li>
</ul>
<h2><span style="text-decoration: underline;">16. Simple Dither Effect using CSS</span></h2>
<p><img class="aligncenter size-full wp-image-1709" title="dither" src="http://desizntech.info/wp-content/uploads/2009/03/dither.jpg" alt="dither" width="500" height="168" /></p>
<ul>
<li>Dezinerfolio shows how to create a <a href="http://www.dezinerfolio.com/2008/11/24/simple-dither-effect-using-css/" target="_blank">dither effect using</a> CSS .</li>
</ul>
<h2><span style="text-decoration: underline;">17. Create a  liDock Menu</span></h2>
<h2><img class="aligncenter size-full wp-image-1711" title="css_dock" src="http://desizntech.info/wp-content/uploads/2009/03/css_dock.jpg" alt="css_dock" width="500" height="155" /></h2>
<ul>
<li><a title="Permanent Link: Horizontal Menus That Grow on You" rel="bookmark" href="http://csshowto.com/menus/horizontal-menus-that-grow-on-you/">Horizontal Menus That Grow on You</a></li>
</ul>
<h2><span style="text-decoration: underline;">18. CSS Hover Swap Effect</span></h2>
<h2><img class="aligncenter size-full wp-image-1713" title="hover_swap" src="http://desizntech.info/wp-content/uploads/2009/03/hover_swap.jpg" alt="hover_swap" width="500" height="160" /></h2>
<ul>
<li>
<p class="postTitle"><a href="http://min.frexy.com/article/css_swap_hover_effect/" target="_blank"> CSS swap hover effect</a></p>
</li>
</ul>
<h2><span style="text-decoration: underline;">19.   Polaroid effect using CSS</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1725" title="polaroid-css" src="http://desizntech.info/wp-content/uploads/2009/03/polaroid-css.jpg" alt="polaroid-css" width="500" height="227" /></span></p>
<ul class="maglist">
<li>Do you like Polaroid pictures? Well using this <a href="http://www.vasudevaservice.com/blog/archive/2006/10/02/polaroid-effect-using-css-and-rest" target="_blank">technique</a> you can make the pictures on website look like Polaroid.</li>
<li><a href="http://jcornelius.com/articles/polaroidizing-photos-with-css/" target="_blank">Polaroid-izing photos with CSS and one Image.</a></li>
</ul>
<h2><span style="text-decoration: underline;">20. CSS Magazine Style Layout</span></h2>
<p><img class="aligncenter size-full wp-image-1727" title="magazine" src="http://desizntech.info/wp-content/uploads/2009/03/magazine.jpg" alt="magazine" width="500" height="314" /></p>
<ul>
<li><a href="http://www.mandarindesign.com/2004/09/magazine-style-css.html" target="_blank">Create a Magazine Type layout Using CSS</a></li>
</ul>
<h2><span style="text-decoration: underline;">21. CSS Hoverbox Menu</span></h2>
<ul>
<li><img class="aligncenter size-full wp-image-1731" title="Hoverbox" src="http://desizntech.info/wp-content/uploads/2009/03/hoverbox.jpg" alt="Hoverbox" width="500" height="137" />A really <a href="http://www.designmeme.com/articles/hoverboxmenu/" target="_blank">cool CSS Menu</a> using Images and CSS</li>
</ul>
<h2><span style="text-decoration: underline;">22.CSS TABS &#8211; CSS Only &#8220;DOM TABS&#8221;</span></h2>
<p><span style="text-decoration: underline;"><img class="aligncenter size-full wp-image-1733" title="css_tab" src="http://desizntech.info/wp-content/uploads/2009/03/css_tab.jpg" alt="css_tab" width="500" height="202" /></span></p>
<ul>
<li>Using CSS only <a href="http://www.3point7designs.com/blog/2007/09/12/css-tabs-css-only-dom-tabs/" target="_blank">Create a Tabbed content</a>. No jquery or Javascript at all.</li>
</ul>
<h2><span style="text-decoration: underline;">23.CSS Magic with Fixed Background-attachment</span></h2>
<p><a href="http://www.askthecssguy.com/examples/fixedBackgroundImages/example01.html" target="_blank"><img class="aligncenter size-full wp-image-1736" title="css_magic" src="http://desizntech.info/wp-content/uploads/2009/03/css_magic.jpg" alt="css_magic" width="499" height="324" /></a></p>
<ul>
<li>Ask the CSS Guy <a href="http://www.askthecssguy.com/2009/01/mike_asks_the_css_guy_about_a.html" target="_blank">shows a trick that reveals a magic </a>as you scroll.</li>
</ul>
<h2><span style="text-decoration: underline;">24.CSS tooltips</span></h2>
<p><img class="aligncenter size-full wp-image-1739" title="tool_tips" src="http://desizntech.info/wp-content/uploads/2009/03/tool_tips.jpg" alt="tool_tips" width="500" height="178" /></p>
<ul>
<li><a href="http://lixlpixel.org/css_tooltip/" target="_blank">Show a message when hovering over the links.</a></li>
</ul>
<h2><span style="text-decoration: underline;">25. Pure CSS Preloader </span></h2>
<h2><img class="aligncenter size-full wp-image-1756" title="css_loader" src="http://desizntech.info/wp-content/uploads/2009/03/css_loader.jpg" alt="css_loader" width="500" height="239" /></h2>
<ul>
<li><a href="http://www.dynamixlabs.com/2008/01/17/a-quick-look-add-a-loading-icon-to-your-larger-images/" target="_blank">Add a &#8220;loading&#8221; icon to your larger images</a></li>
</ul>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2009/03/discover-the-cool-of-css-25-advanced-css-techniques/feed/</wfw:commentRss>
		<slash:comments>78</slash:comments>
		</item>
		<item>
		<title>Images galleries-Flash/CSS : Where to get them?</title>
		<link>http://desizntech.info/2009/01/images-galleries-flashcss-where-to-get-them/</link>
		<comments>http://desizntech.info/2009/01/images-galleries-flashcss-where-to-get-them/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 23:21:07 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[image galleries]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=247</guid>
		<description><![CDATA[Whenever web designers are working on projects they need images galleries or flash scripts for the clients. Also, sometimes you want to add image galleries for own web sites. In this article I will go over the sites, from where you can acquire high quality image galleries. Paul Van Roekel This first site I bring [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>Whenever web designers are working on projects they need images galleries or flash scripts for the clients. Also, sometimes you want to add image galleries for own web sites. In this article I will go over the sites, from where you can acquire high quality image galleries.<br />
<span id="more-247"></span></p>
<h2><a href="http://www.paulvanroekel.nl/" target="_blank">Paul Van Roekel</a></h2>
<p><a href="http://www.paulvanroekel.nl/" target="_blank"><img class="alignnone size-full wp-image-4729" title="paul_van" src="http://desizntech.info/wp-content/uploads/2009/01/paul_van.jpg" alt="paul_van" width="500" height="227" /></a><br />
This first site I bring to you is from <a href="http://www.paulvanroekel.nl/" target="_blank">Paul Van Roekel</a> , who is a photographer. his website has total 18 or more flash based galleries. I call these site the &#8220;Mother-Load of all galleries.&#8221; These galleries are collections of different images galleries from different sites developed by talented web developers . The cool thing about this is that if you use <a href="http://picasa.google.com/" target="_blank">Picasa </a>, some of these flash galleries comes as template, you can integrate them in Picasa and make a web gallery in one click.  I have used this site for various of my projects. Comes in very handy.</p>
<h2><a href="http://www.entheosweb.com/Flash/free_flash_photo_gallery.asp" target="_blank">Entheos</a></h2>
<p><a href="http://www.entheosweb.com/Flash/free_flash_photo_gallery.asp" target="_blank"><img class="alignnone size-full wp-image-4731" title="free_flash" src="http://desizntech.info/wp-content/uploads/2009/01/free_flash.jpg" alt="free_flash" width="500" height="256" /></a></p>
<p>The second site is <a href="http://www.entheosweb.com/Flash/free_flash_photo_gallery.asp" target="_blank">Entheosweb.com </a>. This site has couple of free flash galleries and also premium paid galleries as well. The free galleries comes with demo and the images are pulled from XML files, so it is very easy to add or remove images.</p>
<h2><a href="http://www.dynamicdrive.com/style/csslibrary/category/C4/" target="_blank">Dynamic Drive </a></h2>
<p>Now, lets say you do not want flash galleries and want to stick with good old CSS. No worries. <a href="http://www.dynamicdrive.com/style/csslibrary/category/C4/" target="_blank">Dynamic Drive</a> Got your back. It has couple of image galleries that are easy to use and customizable. More galleries can be found on this <a href="http://www.dynamicdrive.com/dynamicindex4/" target="_blank">page .<br />
</a><a href="http://www.dynamicdrive.com/style/csslibrary/category/C4/" target="_blank"><img class="alignnone size-full wp-image-4733" title="dynamic_drive" src="http://desizntech.info/wp-content/uploads/2009/01/dynamic_drive.jpg" alt="dynamic_drive" width="500" height="255" /></a></p>
<h2><a href="http://www.cssplay.co.uk/menu/" target="_blank">Stu Nicholls</a></h2>
<p>Also, another cool CSS images gallery comes from <a href="http://www.cssplay.co.uk/menu/lightbox.html" target="_blank">Stu Nicholls</a>.  The images gallery is CSS based and also has a new version that shows individual images shows on the same window.</p>
<p><a href="http://www.cssplay.co.uk/menu/" target="_blank"><img class="alignnone size-full wp-image-4735" title="stu" src="http://desizntech.info/wp-content/uploads/2009/01/stu.jpg" alt="stu" width="500" height="263" /></a></p>
<p>Moreover, here are 12 Javascript galleries that were reviewed by <a href="http://tutorialblog.org/12-javascript-image-galleries/" target="_self">Tutorial blog</a>, that can be used for free.</p>
<p><img class="alignnone size-full wp-image-4737" title="frog_js" src="http://desizntech.info/wp-content/uploads/2009/01/frog_js.jpg" alt="frog_js" width="500" height="236" /></p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2009/01/images-galleries-flashcss-where-to-get-them/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Free CSS Music Menu</title>
		<link>http://desizntech.info/2009/01/free-css-music-menu/</link>
		<comments>http://desizntech.info/2009/01/free-css-music-menu/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 00:30:25 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[music menu]]></category>
		<category><![CDATA[simple css menu]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=205</guid>
		<description><![CDATA[This is a simple CSS menu . It can be used for music blogs and media blog. I recently had to help with a website of a music composer and I decided to use this menu. Enjoy and Feedback are welcome. View Demo Download Music Menu Massive Freebies Password: d08YkM1<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p>This is a simple CSS menu . It can be used for music blogs and media blog. I recently had to help with a website of a music composer and I decided to use this menu. Enjoy and Feedback are welcome.<br />
<span id="more-205"></span></p>
<p><img class="size-medium wp-image-209" title="music menu" src="http://desizntech.info/wp-content/uploads/2009/01/picture-1-300x103.png" alt="Music Menu" width="300" height="103" /><br />
<a class="downloadlink" href="http://desizntech.info/demo/menu.html" target="_blank"> View Demo</a> <a class="downloadlink" href="http://www.4shared.com/file/78665344/67509cc0/desizntechinfo_music_menu.html" target="_blank">Download Music Menu</a></p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2009/01/free-css-music-menu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A Free Colorful CSS Menu</title>
		<link>http://desizntech.info/2008/12/free-colorful-css-menus/</link>
		<comments>http://desizntech.info/2008/12/free-colorful-css-menus/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 04:33:49 +0000</pubDate>
		<dc:creator>Kawsar Ali</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://desizntech.info/?p=24</guid>
		<description><![CDATA[In this post we are sharing a Colorful CSS menu. This menu is really easy to use and customizable. It is just a simple CSS menu, with a class added to each link to have a different colors. Click on the demo to see it working. To download the whole file &#8220;Right click and Save [...]<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://desizntech.info/wp-content/uploads/2008/12/colorfun_css.png" alt="colorfun_css" title="colorfun_css" width="500" height="224" class="alignnone size-full wp-image-5052" /><br />
In this post we are sharing a Colorful CSS menu. This menu is really easy to use and customizable.<br />
<span id="more-24"></span><br />
It is just a simple CSS menu, with a class added to each link to have a different colors.<br />
Click on the demo to see it working. To download the whole file &#8220;Right click and Save target As&#8221;<br />
<a class="demolink" href="http://desizntech.info/demo/colorful_css.html" target="_blank">Demo </a> <a class="downloadlink" href="http://desizntech.info/wp-content/plugins/download-monitor/download.php?id=12" title=" downloaded 1125 times" >Download Colorful CSS Menu</a></p>
<p><br/><br/>
Massive Freebies Password: d08YkM1</p>
]]></content:encoded>
			<wfw:commentRss>http://desizntech.info/2008/12/free-colorful-css-menus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: desizntech.info @ 2012-05-22 16:04:03 -->
