<?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>Coding Day &#187; CSS</title>
	<atom:link href="http://www.codingday.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codingday.com</link>
	<description>Adventures in Computing, Can Erten's blog</description>
	<lastBuildDate>Tue, 13 Jul 2010 12:52:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Google Wide Search Box for Firefox Stylish</title>
		<link>http://www.codingday.com/google-wide-search-box-for-firefox-stylish/</link>
		<comments>http://www.codingday.com/google-wide-search-box-for-firefox-stylish/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 02:52:43 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.canerten.com/google-wide-search-box-for-firefox-stylish/</guid>
		<description><![CDATA[Sometimes Google&#8217;s search&#160;box is not enough as a size. So I decided to add a simple CSS class to the textbox to display wider and clearer.To add some css style sheets to sites in Firefox, there is a powerful addon called stylish. So a simple stylish css code can provide that change. As a result [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes Google&#8217;s search&nbsp;box is not enough as a size. So I decided to add a simple CSS class to the textbox to display wider and clearer.To add some css style sheets to sites in Firefox, there is a powerful addon called stylish. So a simple stylish css code can provide that change. As a result Google search box becomes wider and with font colour red. It is optimized for&nbsp; wide screens width sized 1280.</p>
<p>
Before<br />
<img id="image187" src="http://www.codingday.com/wp-content/uploads/2007/01/before.png" alt="before.png" /><br />
<br/><br />
After<br />
<img id="image188" src="http://www.codingday.com/wp-content/uploads/2007/01/after.png" alt="after.png" />
</p>
<p>You can install it&nbsp;from <a href="http://userstyles.org/style/show/1690" target="_blank">UserStyles.org</a> or just copy the code to your stylish add-on. You need to have either <a href="https://addons.mozilla.org/firefox/748/" target="_blank">GreaseMonkey</a> or <a href="https://addons.mozilla.org/firefox/2108/" target="_blank">Stylish</a> add-ons installed on Firefox</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #a1a100;">@namespace url(http://www.w3.org/1999/xhtml);</span>
<span style="color: #808080; font-style: italic;">/*Coded by Can Erten */</span>
<span style="color: #a1a100;">@-moz-document url-prefix(http://www.google.) </span>
<span style="color: #00AA00;">&#123;</span>	
	<span style="color: #00AA00;">&#91;</span>name<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;q&quot;</span><span style="color: #00AA00;">&#93;</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">925px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">14pt</span>!important<span style="color: #00AA00;">;</span>
			 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">red</span>!important<span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span>!important <span style="color: #00AA00;">&#125;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/google-wide-search-box-for-firefox-stylish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scrollable Box (div) in CSS</title>
		<link>http://www.codingday.com/scrollable-box-div-in-css/</link>
		<comments>http://www.codingday.com/scrollable-box-div-in-css/#comments</comments>
		<pubDate>Sat, 14 Oct 2006 03:24:02 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[overflow]]></category>
		<category><![CDATA[scroll]]></category>

		<guid isPermaLink="false">http://www.canerten.com/scrollable-box-div-in-css/</guid>
		<description><![CDATA[As you may notice I updated my blog theme to scrollable boxes to make the navigation easier. You might still go to the individual page for viewing. You can do this with CSS&#8217; overflow property.You also have to give the width and height, so the browser can understand where to put the scrolls. To make [...]]]></description>
			<content:encoded><![CDATA[<p>As you may notice I updated my blog theme to scrollable boxes to make the navigation easier. You might still go to the individual page for viewing. You can do this with CSS&#8217; overflow property.You also have to give the width and height, so the browser can understand where to put the scrolls.  To make scrollbars you need to set overflow property to &#8220;scroll&#8221;.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.box</span>
<span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">445px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">250px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">scroll</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>There is another overflow code &#8220;auto&#8221;, this makes scrolls if needed, and leaves it if the contents fits to the div. I haven&#8217;t chosen that because I wanted to have symmetry. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/scrollable-box-div-in-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Transparent DIV SPAN for all browsers, Firefox, Opera, Safari, Chrome, Internet Explorer</title>
		<link>http://www.codingday.com/transparent-div-span-for-all-browsers/</link>
		<comments>http://www.codingday.com/transparent-div-span-for-all-browsers/#comments</comments>
		<pubDate>Sun, 16 Jul 2006 17:17:52 +0000</pubDate>
		<dc:creator>Can</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css_elements]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet_explorer]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[transparent]]></category>

		<guid isPermaLink="false">http://www.canerten.com/transparent-div-span-for-all-browsers/</guid>
		<description><![CDATA[To make an HTML element transparent. Just use these css elements in your css class.&#160; filter, moz-opacity, opacity. Internet Explorer uses filter and firefox uses moz-opacity. .transparent &#123; filter:alpha&#40;opacity=60&#41;; -moz-opacity: 0.6; opacity: 0.6; &#125; &#60;div class=&#34;transparent&#34;&#62;A transparent div. &#60;/div&#62; The opacity value changes from 0 to 1.]]></description>
			<content:encoded><![CDATA[<p>To make an HTML element transparent. Just use these css elements in your css class.&nbsp; filter, moz-opacity, opacity.</p>
<p>Internet Explorer uses filter and firefox uses moz-opacity.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.transparent</span>
<span style="color: #00AA00;">&#123;</span>
   filter<span style="color: #00AA00;">:</span>alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">60</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> 
   -moz-opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0.6</span><span style="color: #00AA00;">;</span> 
   opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0.6</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><!--adsense#codemrectangle--></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;transparent&quot;&gt;A transparent div.
&lt;/div&gt;</pre></div></div>

<p>The opacity value changes from 0 to 1. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codingday.com/transparent-div-span-for-all-browsers/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
