<?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 2009</copyright>
        <lastBuildDate>Sat, 30 Aug 2008 08:58:44 +0800</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Making simple hover image using CSS </title>
            <description><![CDATA[<p>I always forget this basic image hover. Im posting it here in my blog for future referrence and for you my readers as well. Making&nbsp;hover images is fairly simple and very straight forward. It only needs a couple of css lines using the anchor element and its hover by manipulating the background image. Hover your mouse pointer to the image below and see a working sample of the image hover using CSS.</p>
<p><a id="nav-home" href="#"><span class="nav-hide">Home</span></a></p>
<p>&nbsp;Download image hover resources if you want to try it on your own. </p>
<p><img class="mt-image-left" style="FLOAT: left; MARGIN: 0px 20px 20px 0px" height="20" alt="hover1.gif" src="http://www.tildemark.com/images/hover1.gif" width="120" /></p>
<p>
<p>
<p><img class="mt-image-left" style="FLOAT: left; MARGIN: 0px 20px 20px 0px" height="20" alt="hover2.gif" src="http://www.tildemark.com/images/hover2.gif" width="120" /></p>
<p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Below is a simple HTML code used to display the image hover.</p>
<p></p>
<p></p>
<p></p><code>
<p>&lt;a id="nav-home" href="#"&gt;&lt;span class="nav-hide"&gt;Home&lt;/span&gt;&lt;/a&gt;</p></code>
<p>The span tag allows us to hide its content using the display:hide; command in CSS. The nav-home value will define how our image will then be displayed. See below for the CSS code. </p><code>
<p>a#nav-home {<br />display: block;<br />text-decoration: none;<br />width: 120px;<br />height: 20px;<br />margin: 0 auto;<br />background-image:url(images/hover1.gif);<br />}</p>
<p>a#nav-home:hover {<br />background-image:url(images/hover2.gif);<br />}</p>
<p>.nav-hide {<br />display: none;<br />}</p>
<p>#nav-home img {<br />border: 0;<br />}</p></code>]]></description>
            <link>http://www.tildemark.com/programming/css/making-simple-hover-image-using-css.html</link>
            <guid>http://www.tildemark.com/programming/css/making-simple-hover-image-using-css.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
            
            <pubDate>Sat, 30 Aug 2008 08:58:44 +0800</pubDate>
        </item>
        
        <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>
        
        <item>
            <title>Creating Drop Shadow Using CSS</title>
            <description><![CDATA[ <p>Imagine using text with drop shadows, no more images and faster loading...<br />
I been looking for ways in how to make a drop down shadow and thought you might be interested in my discovery. If you are familiar with Adobe Pagemaker then it will be easy for you.</p>

<p>By placing anoter text of darker color on top of the other with a light color will do the trick. The only problem i've seen is that when you try to disable css, the text maybe duplicated. </p>

<h2 style="position: relative; left: 1px; top: 1px; color: rgb(204, 204, 204);">tildemark blogs<span style="position: absolute; left: -2px; top: -2px; color: rgb(0, 0, 0);">tildemark blogs</span></h2>

Css: 
<pre><code>
.container { 
  position: relative; 
  left: 1px; 
  top: 1px; 
  color: #ccc; 
}
.text { 
  position: absolute; 
  left: -2px; 
  top: -2px; 
  color: #000;
}</code></pre>

Code:
<pre><code>
&lt;h1 class="container"&gt;tildemark
&lt;span class="text"&gt;tildemark&lt;/span&gt;
&lt;/h1&gt;</code></pre>



]]></description>
            <link>http://www.tildemark.com/programming/css/creating-drop-shadow-using-css.html</link>
            <guid>http://www.tildemark.com/programming/css/creating-drop-shadow-using-css.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
            
            <pubDate>Mon, 14 Mar 2005 12:40:21 +0800</pubDate>
        </item>
        
    </channel>
</rss>






