<?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>Jiby S K - Web Designer &#187; Tips &amp; Tricks</title>
	<atom:link href="http://www.jibysk.com/tag/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jibysk.com</link>
	<description>Howdy! I&#039;m Jiby and I&#039;m a web desiner creates attractive, accessible standard compliant websites good at css, html</description>
	<lastBuildDate>Wed, 31 Mar 2010 07:19:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Styling File Inputs using CSS and jquery</title>
		<link>http://www.jibysk.com/2009/11/02/styling-file-inputs-with-css-and-jquery/</link>
		<comments>http://www.jibysk.com/2009/11/02/styling-file-inputs-with-css-and-jquery/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 06:49:47 +0000</pubDate>
		<dc:creator>Jiby</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.jibysk.com/?p=91</guid>
		<description><![CDATA[Normally browsers do not allow to style file inputs. File Style plug-in shows a solution to fix the problem. This Plug-in uses jquery with css which enables the users to use image as browse button and style filename field as normal text field using CSS.

This Source of this post is from appelsiini
How does it work?
Plug-in [...]]]></description>
			<content:encoded><![CDATA[<p>Normally browsers do not allow to style file inputs. File Style plug-in shows a solution to fix the problem. This Plug-in uses jquery with css which enables the users to use image as browse button and style filename field as normal text field using CSS.<br />
<span id="more-91"></span><br />
This Source of this post is from <a href="http://www.appelsiini.net/projects/filestyle">appelsiini</a></p>
<h3>How does it work?</h3>
<p>Plug-in wraps vanilla file input with div. This div has button as background image. Image button is aligned with file inputs browse button. File input is then hidden by setting opacity to zero. Chosen file is shown in normal text input which mimics file input. This text input also inherits file inputs class. Use this class to style the text input.</p>
<h3>How to use?</h3>
<p>Insert the jquery and filestyle js files to the header section of html</p>
<pre class="brush: jscript;">
&lt;script src=&quot;jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;jquery.filestyle.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p>The button image used in the code is here.<br />
<img class="alignnone size-full wp-image-90" title="choose-file" src="http://www.jibysk.com/wp-content/uploads/2009/11/choose-file.gif" alt="choose-file" width="80" height="22" /><br />
The java script code for styling the file input is as follows.</p>
<pre class="brush: jscript;">
$(&quot;input[type=file]&quot;).filestyle({
     image: &quot;choose-file.gif&quot;,
     imageheight : 22,
     imagewidth : 82,
     width : 250
 });
</pre>
<p>You can view the demo of the plug-in from <a href="http://www.appelsiini.net/projects/filestyle/demo.html" target="_blank">here</a><br />
Download the javascript file from <a href="http://www.appelsiini.net/download/jquery.filestyle.js" target="_blank">here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jibysk.com/2009/11/02/styling-file-inputs-with-css-and-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scrollable Table with Fixed Header</title>
		<link>http://www.jibysk.com/2009/10/26/scrollable-table-with-fixed-header/</link>
		<comments>http://www.jibysk.com/2009/10/26/scrollable-table-with-fixed-header/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 05:39:40 +0000</pubDate>
		<dc:creator>Jiby</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.jibysk.com/?p=62</guid>
		<description><![CDATA[Here is a solution for fixed table header for tables using jQuery plugin.The following code requires the header rows, with in a thead tag, the table body in a tbody tag.

Follow below 5 steps to create a fixed header row of a normal HTML table.
Step 1: 
Include the jQuery JavaScript file on header section of [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a solution for fixed table header for tables using jQuery plugin.The following code requires the header rows, with in a thead tag, the table body in a tbody tag.<br />
<span id="more-62"></span><br />
Follow below 5 steps to create a fixed header row of a normal HTML table.</p>
<h3>Step 1: </h3>
<p>Include the jQuery JavaScript file on header section of web page.</p>
<h3>Step 2: </h3>
<p>Include the Fixed Header jQuery file on header section of web page.<br />
Download  <a href="http://jacky.seezone.net/fixedheader/jquery.fixedheader.js">jquery.fixedheader.js</a></p>
<h3>Step 3: </h3>
<p>Copy  and paste this CSS code in stylesheet or header section of web page.</p>
<pre class="brush: css;">
&lt;style type=&quot;text/css&quot;&gt;
.dataTable {
font-family:Verdana, Arial, Helvetica, sans-serif;
border-collapse: collapse;
border:1px solid #999999;
width: 750px;
font-size:12px;
}
.dataTable td, .dataTable th {
border: 1px solid #999999;
padding: 3px 5px;
margin:0px;
}
.dataTable thead th {
background-color:#cccccc;
color:#444444;
font-weight:bold;
text-align:left;
}
.dataTable thead a {
text-decoration:none;
color:#444444;
}
.dataTable thead a:hover { text-decoration: underline;}
/* Firefox has missing border bug! https://bugzilla.mozilla.org/show_bug.cgi?id=410621 */
/* Firefox 2 */
html&lt;/**/body .dataTable, x:-moz-any-link {margin:1px;}
/* Firefox 3 */
html&lt;/**/body .dataTable, x:-moz-any-link, x:default {margin:1px}
&lt;/style&gt;
</pre>
<h3>Step 4: </h3>
<p>Add this JavaScript code in header section of web page.</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){
$(&quot;#data&quot;).fixedHeader({width: 500,height: 300});
})
&lt;/script&gt;
</pre>
<h3>Step 5: </h3>
<p>Create an HTML table on the page, including THEAD and TBODY sections.</p>
<pre class="brush: xml;">
&lt;table id=&quot;data&quot; class=&quot;dataTable&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt; ….. &lt;\th&gt;
&lt;th&gt; ….. &lt;\th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt; ….. &lt;\td&gt;
&lt;td&gt; ….. &lt;\td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</pre>
<h2>Compatibility</h2>
<p>IE6/7, Firefox 3.0/3.1, Opera 9.5, Chrome 0.2, Safari 3.1.2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jibysk.com/2009/10/26/scrollable-table-with-fixed-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 PNG Transparency  Fix</title>
		<link>http://www.jibysk.com/2009/10/20/ie6-png-transparency-fix/</link>
		<comments>http://www.jibysk.com/2009/10/20/ie6-png-transparency-fix/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:16:20 +0000</pubDate>
		<dc:creator>Jiby</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.jibysk.com/?p=38</guid>
		<description><![CDATA[DD_belatedPNG is a fresh IE6 PNG fix script with features where other solutions are missing. This png fix successfully renders background-repeat and background-position in IE6. This script also fixes the IE6 grey background problem.

How to use it?
Insert the .js file to your code
Create another script node
Define the class the fix will be applied to, like:
DD_belatedPNG.fix(&#8217;.png_bg&#8217;);
Click [...]]]></description>
			<content:encoded><![CDATA[<p>DD_belatedPNG is a fresh IE6 PNG fix script with features where other solutions are missing. This png fix successfully renders background-repeat and background-position in IE6. This script also fixes the IE6 grey background problem.<br />
<span id="more-38"></span><br />
How to use it?</p>
<div class="code">Insert the .js file to your code<br />
Create another script node<br />
Define the class the fix will be applied to, like:<br />
DD_belatedPNG.fix(&#8217;.png_bg&#8217;);</div>
<p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/">Click here</a> to visit DD_belatedPNG  plugin site</p>
<p>Use the script only for IE6 with conditional comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jibysk.com/2009/10/20/ie6-png-transparency-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Sticky Footer Layout</title>
		<link>http://www.jibysk.com/2009/10/20/css-sticky-footer-layout/</link>
		<comments>http://www.jibysk.com/2009/10/20/css-sticky-footer-layout/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:14:15 +0000</pubDate>
		<dc:creator>Jiby</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.jibysk.com/?p=36</guid>
		<description><![CDATA[Here is a solution for Sticky Footer Layout. It applies a clear fix hack to keep the footer in place in Chrome and other browsers where the footer would float up when you resized the window. This hack fixes the problems that might occur if we are using floats to create two or three column [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a solution for Sticky Footer Layout. It applies a clear fix hack to keep the footer in place in Chrome and other browsers where the footer would float up when you resized the window. This hack fixes the problems that might occur if we are using floats to create two or three column layouts.</p>
<p><span id="more-36"></span></p>
<p>The Sticky Footer Layout posted here is from <a href="http://www.cssstickyfooter.com/using-sticky-footer-code.html">css sticky footer</a>, <a href="http://themaninblue.com/writing/perspective/2005/08/29/">A List Apart</a>, <a href="http://themaninblue.com/writing/perspective/2005/08/29/">Cameron Adams</a> and, <a href="http://www.lwis.net/journal/2008/02/08/pure-css-sticky-footer/">lwis.net.</a> </p>
<p><em>Here is the basic structure of HTML code.</em></p>
<div class="code">
&lt;div id=&#8221;wrap&#8221;&gt;<br />
        &lt;div id=&#8221;header&#8221;&gt;<br />
	&lt;/div&gt;<br />
	&lt;div id=&#8221;main&#8221; class=&#8221;clearfix&#8221;&gt;<br />
	&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;footer&#8221;&gt;<br />
&lt;/div&gt;
</div>
<p>You&#8217;ll notice how the footer div is outside of the wrap div and header is placed inside the wrap but above the main. If you wanted to place any elements outside wrap or footer then we have to use absolute positioning for particular element else it messes up the 100% height calculations.</p>
<p><em>Here is the CSS code</em></p>
<div class="code">
html, body, #wrap {height: 100%;}<br />
body > #wrap {height: auto; min-height: 100%;}<br />
#main {padding-bottom: 150px;}  /* must be same height as the footer */<br />
#footer {<br />
	position: relative;<br />
	margin-top: -150px; /* negative value of footer height */<br />
	height: 150px;<br />
	clear:both;<br />
}
</div>
<p>we are not done just yet. </p>
<p>We need to add the clearfix properties to the main div to get the footer to stick in Chrome. It also solves issues that come up when using a 2-column layout where you float your content to one side and sidebar to the other.</p>
<p><em>Here is the clearfix code</em></p>
<div class="code">
.clearfix:after {content: &#8220;.&#8221;;<br />
	display: block;<br />
	height: 0;<br />
	clear: both;<br />
	visibility: hidden;<br />
}<br />
.clearfix {display: inline-block;}<br />
/* Hides from IE-mac \*/<br />
* html .clearfix { height: 1%;}<br />
.clearfix {display: block;}<br />
/* End hide from IE-mac */
</div>
<p>When coding sites for ASP.net where each page is inside a form tag, make sure to add the form tag to the height:100% statement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jibysk.com/2009/10/20/css-sticky-footer-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Multiple Internet Explorer Versions &#8211; IE6 IE7 IE8 &#8211; In Same System</title>
		<link>http://www.jibysk.com/2009/10/19/run-multiple-internet-explorer-versions-ie6-ie7-ie8-in-same-system/</link>
		<comments>http://www.jibysk.com/2009/10/19/run-multiple-internet-explorer-versions-ie6-ie7-ie8-in-same-system/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 04:19:32 +0000</pubDate>
		<dc:creator>Jiby</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.jibysk.com/?p=27</guid>
		<description><![CDATA[Here is a solution to install and run IE6 IE7 IE8 in same time which will be helpful for designers to crosscheck over different versions of internet explorer.


Download and install Internet Explorer 6 and Older Version of IE from MultipleIE.
Download Internet Explorer 7 standalone Installer to install IE7.
Download and install Internet Explorer 8

Now your are [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a solution to install and run IE6 IE7 IE8 in same time which will be helpful for designers to crosscheck over different versions of internet explorer.<br />
<span id="more-27"></span></p>
<ul>
<li>Download and install Internet Explorer 6 and Older Version of IE from <a href="http://www.mediafire.com/download.php?m1nu1hjlnvk">MultipleIE</a>.</li>
<li>Download <a href="http://www.mediafire.com/download.php?dim2tzihjuf">Internet Explorer 7 standalone Installer </a>to install IE7.</li>
<li>Download and install <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Internet Explorer 8</a></li>
</ul>
<p>Now your are ready to use IE6 IE7 and IE8 in same time, in same windows system. Enjoy..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jibysk.com/2009/10/19/run-multiple-internet-explorer-versions-ie6-ie7-ie8-in-same-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
