<?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>Kimmtech &#187; CSS</title>
	<atom:link href="http://technotes.kimmwiens.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://technotes.kimmwiens.com</link>
	<description>technical tips and tricks</description>
	<lastBuildDate>Tue, 12 Jan 2010 16:10:00 +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>CSS &#8211; Dotted line in Firefox 3.0</title>
		<link>http://technotes.kimmwiens.com/2009/css-dotted-line-in-firefox-30/</link>
		<comments>http://technotes.kimmwiens.com/2009/css-dotted-line-in-firefox-30/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:19:49 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=259</guid>
		<description><![CDATA[Add outline:none; to body style]]></description>
			<content:encoded><![CDATA[<p>Add</p>
<blockquote>
<p>outline:none;</p>
</blockquote>
<p>to body style</p>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2009/css-dotted-line-in-firefox-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColdFusion &#8211; remove decimals</title>
		<link>http://technotes.kimmwiens.com/2009/coldfusion-remove-decimals/</link>
		<comments>http://technotes.kimmwiens.com/2009/coldfusion-remove-decimals/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 18:19:58 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PowerWeb]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=249</guid>
		<description><![CDATA[#lsnumberformat]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>#lsnumberformat</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2009/coldfusion-remove-decimals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dotted Horizontal Rule in CSS</title>
		<link>http://technotes.kimmwiens.com/2009/dotted-horizontal-rule-in-css/</link>
		<comments>http://technotes.kimmwiens.com/2009/dotted-horizontal-rule-in-css/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:39:01 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=247</guid>
		<description><![CDATA[.line {border-top: 2px dotted #535152; margin-top: 5px; }]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>.line {border-top: 2px dotted #535152;<br />
margin-top: 5px; }</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2009/dotted-horizontal-rule-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS &#8211; Style style dropdown list / menu in forms</title>
		<link>http://technotes.kimmwiens.com/2009/css-style-style-dropdown-list-menu-in-forms/</link>
		<comments>http://technotes.kimmwiens.com/2009/css-style-style-dropdown-list-menu-in-forms/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 17:45:17 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=238</guid>
		<description><![CDATA[You can add items to the list / menu select code &#60;form action=&#34;&#34; method=&#34;get&#34;&#62;&#60;select name=&#34;DropDownList&#34;&#62; &#160;&#160;&#160; &#60;option&#62;red&#60;/option&#62; &#60;/select&#62;&#60;/form&#62; like these: style=&#34;background:&#160;black;&#160;color:&#160;red;&#160;text-decoration;&#160;none;&#160;border:&#160;1px&#160;solid&#160;red;&#34; &#60;form method=&#34;get&#34; action=&#34;&#34;&#62; &#160;&#160;&#160; &#60;select name=&#34;DropDownList&#34; style=&#34;border: 2px solid #7ed01d; width: 115px; color: #ff9d33;&#34;&#62; &#160;&#160;&#160; &#60;option&#62;red&#60;/option&#62; &#160; &#60;option&#62;blue&#60;/option&#62; &#160;&#60;option&#62;green&#60;/option&#62; &#160;&#160;&#160; &#60;/select&#62; &#60;/form&#62; red blue green &#160;]]></description>
			<content:encoded><![CDATA[<p>You can add items to the list / menu select code</p>
<blockquote>
<p>&lt;form action=&quot;&quot; method=&quot;get&quot;&gt;&lt;select name=&quot;DropDownList&quot;&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;option&gt;red&lt;/option&gt;<br />
&lt;/select&gt;&lt;/form&gt;</p>
</blockquote>
<p>like these:</p>
<blockquote>
<p>style=&quot;background:&nbsp;black;&nbsp;color:&nbsp;red;&nbsp;text-decoration;&nbsp;none;&nbsp;border:&nbsp;1px&nbsp;solid&nbsp;red;&quot;</p>
</blockquote>
<blockquote>
<p>&lt;form method=&quot;get&quot; action=&quot;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;select name=&quot;DropDownList&quot; style=&quot;border: 2px solid #7ed01d; width: 115px; color: #ff9d33;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;option&gt;red&lt;/option&gt;<br />
&nbsp; &lt;option&gt;blue&lt;/option&gt;<br />
&nbsp;&lt;option&gt;green&lt;/option&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;/select&gt;<br />
&lt;/form&gt;</p>
<form action="" method="get">
<select style="border: 2px solid #7ed01d; width: 115px; color: rgb(255, 157, 51);" name="DropDownList">
<option>red</option>
<option>blue</option>
<option>green</option>
</select>
</form>
</blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2009/css-style-style-dropdown-list-menu-in-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well written, accessible book on CSS</title>
		<link>http://technotes.kimmwiens.com/2009/well-written-clear-accessible-book-on-css/</link>
		<comments>http://technotes.kimmwiens.com/2009/well-written-clear-accessible-book-on-css/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 04:32:16 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=166</guid>
		<description><![CDATA[I have never had so much fun reading a computer book.&#160; The writing is entertaining, sometimes downright funny and the explanations are clear and elegant.&#160; More practically, I use this book all the time.&#160; It has explanations for most basic CSS situations and solutions for many of the problems CSS&#160;designers run into.&#160; I&#8217;ve tried a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><iframe frameborder="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=heartbear-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=1590596145&amp;md=10FE9736YVPPT7A0FBG2&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width: 120px; height: 240px;" marginwidth="0" marginheight="0"></iframe></p>
<p style="text-align: left;">I have never had so much fun reading a computer book.&nbsp; The writing is entertaining, sometimes downright funny and the explanations are clear and elegant.&nbsp;</p>
<p>More practically, I use this book all the time.&nbsp; It has explanations for most basic CSS situations and solutions for many of the problems CSS&nbsp;designers run into.&nbsp; I&#8217;ve tried a number of books and this one is by far my favorite.</p>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2009/well-written-clear-accessible-book-on-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Center align a CSS container in Internet Explorer</title>
		<link>http://technotes.kimmwiens.com/2008/center-align-a-css-container-in-internet-explorer/</link>
		<comments>http://technotes.kimmwiens.com/2008/center-align-a-css-container-in-internet-explorer/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 05:56:20 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/?p=152</guid>
		<description><![CDATA[body { text-align: center } #container { width: 770px; margin: 0 auto; text-align: left } &#160; The text-align:left in the container rule is to keep the text from center aligning due to the text-align: center in the body rule.]]></description>
			<content:encoded><![CDATA[<p style="margin-left: 40px;">body {<br />
<strong>text-align: center</strong><br />
}</p>
<p style="margin-left: 40px;">
#container  {<br />
width: 770px;<br />
margin: 0 auto;<br />
<strong>text-align: left</strong><br />
}</p>
<p>&nbsp;</p>
<p><tt>The <strong>text-align:left</strong> in the container rule is to keep the text from center aligning due to the text-align: center in the body rule.</tt></p>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2008/center-align-a-css-container-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix illegible, tiny, small font sizes on help files</title>
		<link>http://technotes.kimmwiens.com/2008/how-to-fix-illegible-tiny-small-print-on-help-files/</link>
		<comments>http://technotes.kimmwiens.com/2008/how-to-fix-illegible-tiny-small-print-on-help-files/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 05:57:03 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[help file]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[small text]]></category>
		<category><![CDATA[stylesheets]]></category>
		<category><![CDATA[tiny font size]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/2008/how-to-fix-illegible-tiny-small-print-on-help-files/</guid>
		<description><![CDATA[Some help files appear in super tiny, small fonts that are hardly legible.&#160; This appears to be caused by the help file&#8217;s use of Internet Explorer&#8217;s (IE) style settings.&#160; To fix the problem, go to IE&#8217;s Tools menu and select the bottom option, Internet Options, go to the General tab and then to the Accessiblity [...]]]></description>
			<content:encoded><![CDATA[<p>Some help files appear in super tiny, small fonts that are hardly legible.&nbsp; This appears to be caused by the help file&#8217;s use of Internet Explorer&#8217;s (IE) style settings.&nbsp;</p>
<p>To fix the problem, go to IE&#8217;s <strong>Tools menu</strong> and select the bottom option, <strong>Internet Options</strong>, go to the <strong>General tab</strong> and then to the <strong>Accessiblity button</strong> at the bottom of the tab.&nbsp; A dialog box opens and at the bottom is a space for a user style sheet.&nbsp; Click the check box and use a style sheet you&#8217;ve defined with font-sizes set at least to medium.&nbsp; Mine is called Ichoosetosee.css (name it anything you want) and looks like this:</p>
<blockquote>
<p><font color="#333399">/* CSS Document */<br />
li {<br />
&nbsp;&nbsp;&nbsp; font-size: medium;<br />
}</p>
<p>body {<br />
&nbsp;&nbsp;&nbsp; color: #000000;<br />
&nbsp;&nbsp;&nbsp; background-color: #FFFFFF;<br />
&nbsp;&nbsp;&nbsp; margin: 5px;<br />
&nbsp;&nbsp;&nbsp; font-family: sans-serif;<br />
&nbsp;&nbsp;&nbsp; font-size: medium;<br />
}</p>
<p>p {<br />
&nbsp;&nbsp;&nbsp; font-size: medium;<br />
&nbsp;&nbsp;&nbsp; color: #000000;<br />
&nbsp;&nbsp;&nbsp; font-style: normal;<br />
}<br />
table {<br />
&nbsp;&nbsp;&nbsp; font-size: medium;<br />
&nbsp;&nbsp;&nbsp; color: #000000;<br />
}</p>
<p>
h1 {<br />
&nbsp;&nbsp;&nbsp; font-size: 18px;<br />
&nbsp;&nbsp;&nbsp; font-weight: bold;<br />
&nbsp;&nbsp;&nbsp; text-align: center;<br />
}</p>
<p>h2 {<br />
&nbsp;&nbsp;&nbsp; font-size: large;<br />
&nbsp;&nbsp;&nbsp; color: #000000;<br />
&nbsp;&nbsp;&nbsp; font-weight: normal;<br />
}</p>
<p>h3 {<br />
&nbsp;&nbsp;&nbsp; font-size: 12px;<br />
}</p>
<p>hr {<br />
&nbsp;&nbsp;&nbsp; height: 3px;<br />
&nbsp;&nbsp;&nbsp; width: 704px;<br />
}<br />
hr.short {</p>
<p>&nbsp;&nbsp;&nbsp; height: 1px;<br />
&nbsp;&nbsp;&nbsp; width: 675px;<br />
}</p>
<p>
a:link {<br />
&nbsp;&nbsp;&nbsp; color: #006666;<br />
&nbsp;&nbsp;&nbsp; font-weight: normal;<br />
&nbsp;&nbsp;&nbsp; text-decoration: none;<br />
}<br />
a:visited {<br />
&nbsp;&nbsp;&nbsp; color: #2B0055;<br />
&nbsp;&nbsp;&nbsp; text-decoration: none;<br />
&nbsp;&nbsp;&nbsp; font-weight: normal;<br />
}<br />
a:hover {<br />
&nbsp;&nbsp;&nbsp; font-weight: normal;<br />
&nbsp;&nbsp;&nbsp; color: #6635A8;<br />
&nbsp;&nbsp;&nbsp; text-decoration: none;</p>
<p>}<br />
a:active {<br />
&nbsp;&nbsp;&nbsp; font-weight: normal;<br />
&nbsp;&nbsp;&nbsp; text-decoration: none;<br />
&nbsp;&nbsp;&nbsp; color: #CC99FF;<br />
}</font></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2008/how-to-fix-illegible-tiny-small-print-on-help-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nested list styles in a WordPress sidebar</title>
		<link>http://technotes.kimmwiens.com/2007/nested-list-styles-in-a-wordpress-sidebar/</link>
		<comments>http://technotes.kimmwiens.com/2007/nested-list-styles-in-a-wordpress-sidebar/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 04:04:34 +0000</pubDate>
		<dc:creator>Kimm</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[nested]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://kimmtech.all-around-us.com/2007/nested-list-styles-in-a-wordpress-sidebar/</guid>
		<description><![CDATA[#sidebar ul li { &#160; list-style: disc; &#160; list-style-position: inside; } &#160; #sidebar ul li ul li{ &#160;list-style: circle; &#160;list-style-position: inside; }]]></description>
			<content:encoded><![CDATA[<p>#sidebar ul li {<br />
&nbsp; list-style: disc;<br />
&nbsp; list-style-position: inside;<br />
}</p>
<p>&nbsp;</p>
<p>#sidebar ul li ul li{<br />
&nbsp;list-style: circle;<br />
&nbsp;list-style-position: inside;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://technotes.kimmwiens.com/2007/nested-list-styles-in-a-wordpress-sidebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

