<?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>Ersin Acar &#187; CSS</title>
	<atom:link href="http://ersinacar.com/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://ersinacar.com</link>
	<description>PHP and Web Technologies Freak</description>
	<lastBuildDate>Fri, 06 Jan 2012 14:19:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Text rotation with CSS</title>
		<link>http://ersinacar.com/text-rotation-with-css_177.html</link>
		<comments>http://ersinacar.com/text-rotation-with-css_177.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 07:36:20 +0000</pubDate>
		<dc:creator>Ersin Acar</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[rotation]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=177</guid>
		<description><![CDATA[Jonathan Snook posted good CSS stuff on Text Rotation with CSS that takes a nice bit of markup like this: &#60;div class=&#34;example-date&#34;&#62; &#60;span class=&#34;day&#34;&#62;31&#60;/span&#62; &#60;span class=&#34;month&#34;&#62;July&#60;/span&#62; &#60;span class=&#34;year&#34;&#62;2009&#60;/span&#62; &#60;/div&#62; and converts it to: all via the CSS: -webkit-transform: rotate&#40;-90deg&#41;; -moz-transform: rotate&#40;-90deg&#41;; filter: progid:DXImageTransform.Microsoft.BasicImage&#40;rotation=3&#41;; yeah as you can see it&#8217;s working on IE too. Not bad [...]]]></description>
			<content:encoded><![CDATA[<p>Jonathan Snook posted good CSS stuff on <a href="http://snook.ca/archives/html_and_css/css-text-rotation">Text Rotation with CSS</a> that takes a nice bit of markup like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;example-date&quot;&gt;
  &lt;span class=&quot;day&quot;&gt;31&lt;/span&gt; 
  &lt;span class=&quot;month&quot;&gt;July&lt;/span&gt; 
  &lt;span class=&quot;year&quot;&gt;2009&lt;/span&gt;
&lt;/div&gt;</pre></div></div>

<p>and converts it to:<br />
<img src="http://ersinacar.com/wp-content/uploads/2009/08/text-rotation.png" alt="text-rotation" title="text-rotation" width="265" height="100" class="alignnone size-full wp-image-178" /><br />
all via the CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">-webkit-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>-90deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> 
-moz-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>-90deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>	
filter<span style="color: #00AA00;">:</span> progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.BasicImage<span style="color: #00AA00;">&#40;</span>rotation<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">3</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>yeah as you can see it&#8217;s working on IE too. Not bad ha?</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/text-rotation-with-css_177.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to allways show scrollbars in Firefox</title>
		<link>http://ersinacar.com/how-to-allways-show-scrollbars-in-firefox_140.html</link>
		<comments>http://ersinacar.com/how-to-allways-show-scrollbars-in-firefox_140.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 07:21:25 +0000</pubDate>
		<dc:creator>Ersin Acar</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[scrolls]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=140</guid>
		<description><![CDATA[CSS designers allways have same problem; when the page is short there is no scroll in firefox but there is in ie. We can&#8217;t remove IE&#8217;s scrolls but we can put scrolls to Firefox. Here we go; html &#123; overflow: -moz-scrollbars-vertical; &#125;]]></description>
			<content:encoded><![CDATA[<p>CSS designers allways have same problem; when the page is short there is no scroll in firefox but there is in ie. We can&#8217;t remove IE&#8217;s scrolls but we can put scrolls to Firefox.<br />
Here we go;</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">html <span style="color: #00AA00;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> -moz-scrollbars-vertical<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/how-to-allways-show-scrollbars-in-firefox_140.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript CSS style changer</title>
		<link>http://ersinacar.com/javascript-css-style-changer_85.html</link>
		<comments>http://ersinacar.com/javascript-css-style-changer_85.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:49:53 +0000</pubDate>
		<dc:creator>Ersin Acar</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[changer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=85</guid>
		<description><![CDATA[It may be useful sometimes to provide your visitors with the option to change the appearance of your website. Perhaps you may want to provide theme support for your site. Or you may simply want to provide a bigger font size version of your site for older users who may not be able to read [...]]]></description>
			<content:encoded><![CDATA[<p>It may be useful sometimes to provide your visitors with the option to change the appearance of your website. Perhaps you may want to provide theme support for your site. Or you may simply want to provide a bigger font size version of your site for older users who may not be able to read the small-sized text you use by default. This article describes how you can use JavaScript to dynamically change the cascading style sheets, or CSS, of your website.</p>
<p>Here we go;<br />
<span id="more-85"></span><br />
1st put your css files in ./css directory like</p>
<p>./css/theme1.css</p>
<p>./css/theme2.css</p>
<p>./css/theme3.css</p>
<p>Then put below code in your head tag.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
   <span style="color: #003366; font-weight: bold;">var</span> StyleFile <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;theme&quot;</span> <span style="color: #339933;">+</span> document.<span style="color: #660066;">cookie</span>.<span style="color: #660066;">charAt</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">6</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;.css&quot;</span><span style="color: #339933;">;</span>
&nbsp;
   document.<span style="color: #660066;">writeln</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/'</span> <span style="color: #339933;">+</span> StyleFile <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&quot;&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>After that u can make style changer buttons</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">      &lt;div id=&quot;styleswitcher&quot;&gt;
            &lt;ul&gt;
                &lt;li&gt;&lt;a href=&quot;javascript: document.cookie='theme='; window.location.reload();&quot; title=&quot;Default&quot; id=&quot;defswitch&quot;&gt;d&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;javascript: document.cookie='theme=1;'; document.cookie='theme=1; path=/;'; window.location.reload();&quot; title=&quot;Blue&quot; id=&quot;blueswitch&quot;&gt;b&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;javascript: document.cookie='theme=2'; document.cookie='theme=2; path=/;'; window.location.reload();&quot; title=&quot;Green&quot; id=&quot;greenswitch&quot;&gt;g&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href=&quot;javascript: document.cookie='theme=3'; document.cookie='theme=3; path=/;'; window.location.reload();&quot; title=&quot;Brown&quot; id=&quot;brownswitch&quot;&gt;b&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/javascript-css-style-changer_85.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Top 50 CSS Menus and Navigations</title>
		<link>http://ersinacar.com/top-50-css-menus-and-navigations_72.html</link>
		<comments>http://ersinacar.com/top-50-css-menus-and-navigations_72.html#comments</comments>
		<pubDate>Mon, 20 Apr 2009 09:15:53 +0000</pubDate>
		<dc:creator>Ersin Acar</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=72</guid>
		<description><![CDATA[Navigation menus have to be intuitive, precise and easy-to-use. One simple, basic principle, which is common for all kinds of nav bars you would ever want to use for your projects. You&#8217;ll find 50 user-friendly CSS based menu and navigation solutions. 11 CSS navigation menus : at Exploding Boy 12 more CSS Navigation Menus. : [...]]]></description>
			<content:encoded><![CDATA[<p>Navigation menus have to be intuitive, precise and easy-to-use. One simple, basic principle, which is common for all kinds of nav bars you would ever want to use for your projects.</p>
<p>You&#8217;ll find 50 user-friendly CSS based menu and navigation solutions.</p>
<ol>
<li><a href="http://www.exploding-boy.com/2005/12/15/free-css-navigation-designs/">11 CSS navigation menus</a> : at Exploding Boy</li>
<li><a href="http://www.exploding-boy.com/2005/12/21/more-free-css-navigation-menu-designs/">12 more CSS Navigation Menus.</a> : at Exploding Boy</li>
<li><a href="http://www.exploding-boy.com/2005/12/29/14-free-vertical-css-menus/">14 Free Vertical CSS Menus</a> : at Exploding Boy</li>
<li><a href="http://www.duoh.com/csstutorials/2levelmenu/index.html">2-level horizontal navigation</a> : demo at Duoh</li>
<li><a href="http://evolt.org/article/Absolute_Lists_Alternatives_to_Divs/20/60268/index.html">Absolute Lists: Alternatives to Divs</a> : An approach of using lists instead of divs at evolt</li>
<li><a href="http://www.simplebits.com/bits/tab_rollovers.html">Accessible Image-Tab Rollovers</a> : demo at Simplebits</li>
<li><a href="http://www.aplus.co.yu/adxmenu/examples/">ADxMenu</a> : multiple menu examples at aPlus<span id="more-72"></span></li>
<li><a href="http://www.cssplay.co.uk/menus/drop_variation.html">A drop-down theme</a> : at CSS Play</li>
<li><a href="http://www.websiteoptimization.com/speed/tweak/bookend/">Bookend Lists: Using CSS to Float a Masthead</a> : at WebSiteOptimization</li>
<li><a href="http://www.simplebits.com/bits/bulletproof_slants.html">Bulletproof Slants</a> : demo at Simplebits</li>
<li><a href="http://24ways.org/advent/centered-tabs-with-css">Centered Tabs with CSS</a> : at 24ways</li>
<li><a href="http://www.simplebits.com/notebook/2004/07/18/clickable.html">Clickable Link Backgrounds</a> : A bulletproof unordered list of links, each with a unique (purely decorative) left-aligned icon that is referenced with CSS ; but that is also clickable.</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=97480">Create a Teaser Thumbnail List Using CSS: Part 1</a> : lists of items made up of a title, short description, and thumbnail.</li>
<li><a href="http://builder.com.com/5100-6371_14-5810696.html">Creating Indented Navigation Lists</a> : A multi-level indented list</li>
<li><a href="http://builder.com.com/5100-6371_14-5810687.html">Creating Multicolumn Lists</a> : at Builder.com</li>
<li><a href="http://solardreamstudios.com/learn/css/cssmenus">cssMenus &#8211; 4 Level Deep List Menu</a> : at SolarDreamStudios</li>
<li><a href="http://www.sitepoint.com/article/accessible-menu-tabs">CSS and Round Corners: Build Accessible Menu Tabs</a> : at SitePoint</li>
<li><a href="http://odyniec.net/articles/css-based-tabbed-menu/">CSS-Based Tabbed Menu</a> : a simple tabbed menu.</li>
<li><a href="http://www.nundroo.com/navigation">CSS-based Navigation</a> : demo at Nundroo</li>
<li><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=4">CSS: Double Lists</a> : A single list that appears in two columns</li>
<li><a href="http://www.simplebits.com/bits/minitabs.html">CSS Mini Tabs (the UN-tab, tab)</a> : demo at Simplebits</li>
<li><a href="http://www.cssplay.co.uk/menus/drop_examples.html">CSS only dropdown menu</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/example_flyout.html">CSS only flyout menus</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/fly_drop.html">CSS only flyout/dropdown menu</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/flyout_horizontal.html">CSS only flyout menu with transparency</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/vertical_slide.html">CSS only vertical sliding menu</a> : at CSS Play</li>
<li><a href="http://www.alistapart.com/articles/multicolumnlists">CSS Swag: Multi-Column Lists</a> : at A List Apart</li>
<li><a href="http://unraveled.com/projects/css_tabs/">CSS Tabs</a> : tabs without any images</li>
<li><a href="http://www.web-graphics.com/mtarchive/000852.php">CSS Tabs</a> : list of various tab solutions</li>
<li><a href="http://www.kalsey.com/tools/csstabs/">CSS tabs with Submenus</a> : at Kalsey.</li>
<li><a href="http://www.destroydrop.com/javascripts/tree/">dTree Navigation Menu</a> :  Javascripts Tree at Destroydrop</li>
<li><a href="http://www.maxdesign.com.au/presentation/definition/">Definition lists &#8211; misused or misunderstood?</a> : appropriate uses of definition lists</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=27F87">Do You Want To Do That With CSS? &#8211; Multiple Column Lists</a> : multi-column lists.</li>
<li><a href="http://www.alistapart.com/articles/horizdropdowns/">Drop-Down Menus, Horizontal Style</a> : at A List Apart</li>
<li><a href="http://web-graphics.com/mtarchive/001573.php">Float Mini tabs</a> : at Web-Graphics</li>
<li><a href="http://novitskisoftware.com/articles/MultiColumnLists.asp">Flowing a List Across Multiple Columns</a> : A table without using tables.</li>
<li><a href="http://www.e-lusion.com/design/menu/#1">Free Menu Designs V 1.1</a> : ready-to-download block menusat e-lusion</li>
<li><a href="http://www.twinhelix.com/dhtml/fsmenu/">FreeStyle Menus</a> : XHTML compliant, CSS-formatted menu script at TwinHelix</li>
<li><a href="http://www.cssplay.co.uk/menus/hidden.html">Hidden tab menu</a> : at CSS Play</li>
<li><a href="http://www.webreference.com/programming/css_style/index.html">How to Style a Definition List with CSS</a> : at WebReference</li>
<li><a href="http://www.webreference.com/programming/css_style2/">How to Style an Unordered List with CSS</a> : at WebReference</li>
<li><a href="http://www.webreference.com/programming/css_lists/index.html">How to Use CSS to Position Horizontal Unordered Lists</a> : at WebReference</li>
<li><a href="http://www.alistapart.com/articles/hybrid/">Hybrid CSS Dropdowns</a> : at a List Apart</li>
<li><a href="http://web-graphics.com/mtarchive/001557.php">Inline Mini Tabs</a> : at Web-Graphics</li>
<li><a href="http://photomatt.net/scripts/intellimenu">Intelligent Menus</a> : CSS and PHP menu at PhotoMatt.net</li>
<li><a href="http://www.456bereastreet.com/lab/inverted_tabs/">Inverted Sliding Doors Tabs</a> : at 456BereaStreet</li>
<li><a href="http://www.csscreator.com/menu/multimenu.php">Light Weight Multi Level Menu</a> : at CssCreator</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=01DB3">List Display Problems In Explorer For Windows</a> : list hack for IE</li>
<li><a href="http://css.maxdesign.com.au/listamatic/">Listamatic</a> : simple lists; various styles.</li>
<li><a href="http://css.maxdesign.com.au/listamatic2/">Listamatic2</a> : nexted lists; various styles</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/top-50-css-menus-and-navigations_72.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

