<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Tildemark blogs</title>
        <link>http://www.tildemark.com/</link>
        <description>Blogging on uniquely random things. </description>
        <language>en</language>
        <copyright>Copyright 2008</copyright>
        <lastBuildDate>Mon, 14 Jul 2008 10:58:21 +0800</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>writing accessibility CSS code for the color blind</title>
            <description><![CDATA[Not being able to see the differences between colors is a bit trouble some. Imagine yourself looking at the traffic light and not seeing and red color. These people will see yellowish brown color instead of the red color. Red-green color blind is also called <i>Protanopia</i>, people that are less sensitive to red light and <i>Deuteranopia </i>for people who are less sensitive to the green light.&nbsp; Some study determined that about 10% of the male population are color blind. I am happy I do not belong to those 10%. <br /><br />That is why link urls should stay underlined to help people with color blindness see it immediately. since we are not able to adjust CSS being used on the website we browse, we will just instead use our own CSS page by specifying it on our browser. if you are color blind, this page will help you a lot. If you are not color blind, i don't recommend you using it because it would be weird. <br /><br />First lets create our own CSS file and specify it via our browser settings later. <br /><br /><code><br />* {<br />&nbsp; color: #000 !important;<br />&nbsp; background: #fff !important;<br />}<br /><br />a {<br />&nbsp; text-decoration: underline !important;<br />&nbsp; color: #fff !important;<br />&nbsp; background: #000 !important;<br />}<br /></code><br /><br />the <b>!important</b> specifier must be present on your CSS codes to tell the browser its important and must override the other CSS codes. <br /><br />Using Internet Explorer navigate to&nbsp; <br /><ul><li><b>Tools </b>-&gt;<b> Internet Options</b></li><li>Click on the <b>Accessibility</b> button</li><li>Place a check on the '<b>Format documents using my style sheet</b>' option</li><li><b>Browse</b> to the location where you saved your CSS file above.</li><li>then click <b>OK</b></li></ul>If you are using Firefox go to your profile folder and edit your userCrome.css file of your userContent.css file. just copy-paste the CSS code above to the bottom portion of the file. <br />  ]]></description>
            <link>http://www.tildemark.com/programming/css/writing-accessibility-css-code-for-the-color-blind.html</link>
            <guid>http://www.tildemark.com/programming/css/writing-accessibility-css-code-for-the-color-blind.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">accessibility for color blind</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">css for the color blind</category>
            
            <pubDate>Mon, 14 Jul 2008 10:58:21 +0800</pubDate>
        </item>
        
        <item>
            <title>Tableless form using HTML with CSS</title>
            <description><![CDATA[<p>Making a tableless form is fairly very easy. Like the one shown below:<br />
<div><br />
<form ><br />
  <label id="testform" >Name:</label><input id="testform" type="text" name="name" /><br /><br />
  <label id="testform" >Email:</label><input id="testform" type="text" name="email" /><br /><br />
  <label id="testform" >Comment:</label><textarea id="testform" name="comments" rows="5" ></textarea><br /><div style="clear:both;"></div><br />
  <label id="testform" ></label><input id="testform" type="submit" name="email" /><br /><br />
</form></div><br />
HTML code:<br />
<div class="module-code"></p>

<p>&lt;form id="testform" name="testform" &gt;<br />
  &lt;label &gt;Name:&lt;/label&gt;<br />
  &lt;input type="text" name="name" /&gt;&lt;br /&gt;<br />
  &lt;label &gt;Email:&lt;/label&gt;<br />
  &lt;input type="text" name="email" /&gt;&lt;br /&gt;<br />
  &lt;label &gt;Comment:&lt;/label&gt;<br />
  &lt;textarea name="comments" rows="5" cols="25"&gt;&lt;/textarea&gt;&lt;br /&gt;<br />
&lt;/form&gt;<br />
</div></p>

<p>Add this to your CSS:<br />
<div class="module-code"></p>

<p>#testform label,input ,textarea{<br />
	display: block;<br />
	width: 150px;<br />
	float: left;<br />
	margin-bottom: 5px;<br />
}<br />
#testform label {<br />
	text-align: right;<br />
	width: 75px;<br />
	padding-right: 20px;<br />
}<br />
#testform br {<br />
	clear: left;<br />
}<br />
</div></p>]]></description>
            <link>http://www.tildemark.com/programming/css/tableless-form-using-html-with-css.html</link>
            <guid>http://www.tildemark.com/programming/css/tableless-form-using-html-with-css.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
            
            <pubDate>Fri, 08 Dec 2006 09:00:33 +0800</pubDate>
        </item>
        
        <item>
            <title>transparent images using css with opacity</title>
            <description><![CDATA[<p>Using CSS we could add some uniqueness to our hml pages using transparent images. for example, if we have a global background image ang on top of it there is a gif image only the border or the edges would become transparent. </p>

<p>Specifiying the image opacity allows us to adjust the transparency of our images. here's a sample code. i usually place it under #container tag on my css file.</p>

<div class="module-code">

<p>/* CSS file */<br />
body{<br />
background-image: url(images/background.gif);<br />
}</p>

<p>#container{<br />
  filter:alpha (opacity=80); /* MS Internet Explorer */ <br />
  filter:progid:DXImageTransform.Microsoft.Alpha (style=0, opacity=80) /* MS IE proprietory */ <br />
  -moz-opacity: 0.8; /* Mozilla v1.6 and below */ <br />
  opacity: 0.8; /* CSS-3 Standards */ <br />
  -khtml-opacity:.8 /* Safari */<br />
}<br />
/* CSS file */<br />
</div></p>

<p>the code above makes all the image found on the #container tag lessen its opacity by 80%. not really usefull for me but, you might like it so here goes. </p>]]></description>
            <link>http://www.tildemark.com/programming/css/transparent-images-using-css-with-opacity.html</link>
            <guid>http://www.tildemark.com/programming/css/transparent-images-using-css-with-opacity.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
            
            <pubDate>Wed, 06 Dec 2006 16:21:25 +0800</pubDate>
        </item>
        
        <item>
            <title>CSS Floating Image</title>
            <description><![CDATA[<p>Theres a request with this entry from my last blog, and because i can still remember it, im going to post it here. the image stated in the url will be fixed no matter how the page is scrolled down.</p>

<div class="module-powered module">
<div class="module-content">
<pre>
&lt;style type="text/css"&gt;
&lt;!--
body
{
  background-attachment: fixed;
  background-image: url;
  background-repeat: no-repeat;
  background-position: right top;
}
--&gt;
&lt;/style&gt;
</pre>
</div>
</div>
change the <strong>url</strong> with the correct image filename you want to appear. ]]></description>
            <link>http://www.tildemark.com/programming/css/css-floating-image.html</link>
            <guid>http://www.tildemark.com/programming/css/css-floating-image.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
            
            <pubDate>Sun, 27 Aug 2006 00:01:27 +0800</pubDate>
        </item>
        
    </channel>
</rss>






