<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>magilla loves you</title>
	<atom:link href="http://shantronix.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shantronix.wordpress.com</link>
	<description>hot damn! is it 2010 already? holy crap!</description>
	<lastBuildDate>Thu, 10 Dec 2009 04:27:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='shantronix.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ee7761808ad3068f2f9205a6e1d25420?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>magilla loves you</title>
		<link>http://shantronix.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shantronix.wordpress.com/osd.xml" title="magilla loves you" />
		<item>
		<title>Tweener class</title>
		<link>http://shantronix.wordpress.com/2009/12/10/tweener-class/</link>
		<comments>http://shantronix.wordpress.com/2009/12/10/tweener-class/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 04:23:58 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Actionscript 2]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=227</guid>
		<description><![CDATA[Here a couple of basic scripts for the tweener class..
On frame tween:
import caurina.transitions.*;
     Tweener.addTween(_root.myMovieClip, {_x:100, _y:100, transition:"easeOutQuad", time:1});
/* set the X and Y values to where you want the destination of your tween */
/* set the time in seconds */
on button tween:
import caurina.transitions.*;
var newPosX:Number;
var newPosY:Number;
ButtonOne.onRelease = function() {
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=227&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here a couple of basic scripts for the <a href="http://code.google.com/p/tweener/" target="new">tweener</a> class..</p>
<p><strong>On frame tween:</strong></p>
<p><code>import caurina.transitions.*;<br />
     Tweener.addTween(_root.myMovieClip, {_x:100, _y:100, transition:"easeOutQuad", time:1});<br />
/* set the X and Y values to where you want the destination of your tween */<br />
/* set the time in seconds */</code></p>
<p><strong>on button tween:</strong></p>
<p><code>import caurina.transitions.*;</p>
<p>var newPosX:Number;<br />
var newPosY:Number;</p>
<p>ButtonOne.onRelease = function() {<br />
     newPosX = 100;<br />
     newPosY = 100;<br />
     moveMC();<br />
};</p>
<p>ButtonTwo.onRelease = function() {<br />
     newPosX = 200;<br />
     newPosY = 200;<br />
     moveMC();<br />
};</p>
<p>moveMC = function() {<br />
     Tweener.addTween(BG_MC, {_x:newPosX, _y:newPosY, transition:"easeOutQuad", time:2});<br />
}</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=227&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/12/10/tweener-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>JOOMLA: Adding a header image to the Jforms extension</title>
		<link>http://shantronix.wordpress.com/2009/12/10/joomla-adding-a-header-image-to-the-jforms-extension/</link>
		<comments>http://shantronix.wordpress.com/2009/12/10/joomla-adding-a-header-image-to-the-jforms-extension/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 01:35:58 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=214</guid>
		<description><![CDATA[The default PHP file for Jforms can be found at:
joomla/components/com_jforms/views/form/tmpl/default.php
Take a look at the code, and you will see the following towards the start of the code:

You may need to get rid of the margin and padding for Jforms. this can be found in the CSS file:
joomla/components/com_jforms/views/form/default.css
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=214&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The default PHP file for Jforms can be found at:<br />
<strong>joomla/components/com_jforms/views/form/tmpl/default.php</strong></p>
<p>Take a look at the code, and you will see the following towards the start of the code:<br />
<img src="http://shantronix.files.wordpress.com/2009/12/jformsheader.jpg?w=700&#038;h=190" alt="" title="jformsHeader" width="700" height="190" class="alignnone size-full wp-image-217" /></p>
<p>You may need to get rid of the margin and padding for Jforms. this can be found in the CSS file:<br />
<strong>joomla/components/com_jforms/views/form/default.css</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=214&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/12/10/joomla-adding-a-header-image-to-the-jforms-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>

		<media:content url="http://shantronix.files.wordpress.com/2009/12/jformsheader.jpg" medium="image">
			<media:title type="html">jformsHeader</media:title>
		</media:content>
	</item>
		<item>
		<title>setTimeout &#8211; Creating a pause in the script.</title>
		<link>http://shantronix.wordpress.com/2009/12/04/settimeout-creating-a-pause-in-the-script/</link>
		<comments>http://shantronix.wordpress.com/2009/12/04/settimeout-creating-a-pause-in-the-script/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 08:24:55 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Actionscript 2]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=205</guid>
		<description><![CDATA[So I had a bunch of actions, that I want to be executed after a small delay..
In this example, I have a button that will do 2 things: create a tween on a movieclip, and then (after a small 1 second delay) move to a specified place on the time line. Here&#8217;s how to do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=205&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So I had a bunch of actions, that I want to be executed after a small delay..</p>
<p>In this example, I have a button that will do 2 things: create a tween on a movieclip, and then (after a small 1 second delay) move to a specified place on the time line. Here&#8217;s how to do it:</p>
<p>** please note: I&#8217;ve used the <a href="http://code.google.com/p/tweener/">TWEENER</a> class to create the tween **</p>
<p><code><br />
myButton.onRelease = function() {<br />
import caurina.transitions.*;<br />
     Tweener.addTween(_root.site.myMovieClip, {_x:0, _y:0, transition:"easeOutQuad", time:1});<br />
setTimeout(testTimeOut,1000);<br />
};<br />
function testTimeOut(){<br />
_root.site.gotoAndPlay("home");<br />
};<br />
</code></p>
<p>Here is how it works:</p>
<p><strong>myButton.onRelease = function() {</strong><br />
/* INSERT FIRST ACTION TO BE PERFORMED HERE */</p>
<p><strong>setTimeout(testTimeOut,1000);</strong> /* THIS CREATES A FUNCTION CALLED setTimeout. 1000 = 1 second */<br />
<strong>};</strong></p>
<p>/* THE FOLLOWING LINE CALLS THE FUNCTION */<br />
<strong>function testTimeOut(){</strong><br />
/* INSERT SECOND ACTION TO BE PERFORMED AFTER THE DELAY HERE */<br />
<strong>};</strong> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=205&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/12/04/settimeout-creating-a-pause-in-the-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>v1.5.14 TinyMCE editor not displaying flash SWF</title>
		<link>http://shantronix.wordpress.com/2009/10/28/v1-5-14-tinymce-editor-not-displaying-flash-swf/</link>
		<comments>http://shantronix.wordpress.com/2009/10/28/v1-5-14-tinymce-editor-not-displaying-flash-swf/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 02:06:16 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=200</guid>
		<description><![CDATA[Seems that the tinyMCE editor in joomla version 1.5.14 is a little buggy. I&#8217;ve already encountered 2 problems with it, which after a few sleepless nights I&#8217;ve finally solved..
First problem:
The wysiwyg editor doesn&#8217;t have an icon to embed media.
Solution: 
Open the plugin Editor &#8211; TinyMCE in the Plugin Manager (Extensions -&#62; Plugin Manager) and set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=200&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Seems that the tinyMCE editor in joomla version 1.5.14 is a little buggy. I&#8217;ve already encountered 2 problems with it, which after a few sleepless nights I&#8217;ve finally solved..</p>
<p><strong><em>First problem:</em><br />
</strong>The wysiwyg editor doesn&#8217;t have an icon to embed media.<strong><br />
<em>Solution:</em> </strong><br />
Open the plugin <strong>Editor &#8211; TinyMCE</strong> in the Plugin Manager (Extensions -&gt; Plugin Manager) and set the parameters as follows:<br />
- Functionality to Extended<br />
<strong><br />
<em>Second problem:</em><br />
</strong>After inserting a swf (Using the insert media button), the swf doesn&#8217;t display at all when viewing the site. On closer inspection of the code, you will notice that it&#8217;s magically changed from OBJECT to IMG<br />
<strong><em>Solution:</em></strong><br />
Open the plugin <strong>Editor &#8211; TinyMCE</strong> in the Plugin Manager (Extensions -&gt; Plugin Manager) and set the parameters as follows:<br />
- Code Clean Up = Always</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=200&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/10/28/v1-5-14-tinymce-editor-not-displaying-flash-swf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>JOOMLA: Install problem with configuration.php</title>
		<link>http://shantronix.wordpress.com/2009/08/14/joomla-install-problem-with-configuration-php/</link>
		<comments>http://shantronix.wordpress.com/2009/08/14/joomla-install-problem-with-configuration-php/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 05:56:20 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=195</guid>
		<description><![CDATA[In the pre-installation checklist, you might get configuration.php marked with a NO. Just ignore this and continue with the installation.
Once the installation is complete, copy all the text inside the file configuration.php-dist, and save it to a new file called configuration.php. Open up your new file and copy in the server and ftp information that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=195&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In the pre-installation checklist, you might get <strong>configuration.php</strong> marked with a <strong>NO</strong>. Just ignore this and continue with the installation.</p>
<p>Once the installation is complete, copy all the text inside the file <strong>configuration.php-dist</strong>, and save it to a new file called <strong>configuration.php</strong>. Open up your new file and copy in the server and ftp information that is shown in the final screen of the joomla installation. Upload the file to the root directory of your joomla installation.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=195&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/08/14/joomla-install-problem-with-configuration-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>Access phpMyAdmin on Plesk</title>
		<link>http://shantronix.wordpress.com/2009/08/13/access-phpmyadmin-on-plesk/</link>
		<comments>http://shantronix.wordpress.com/2009/08/13/access-phpmyadmin-on-plesk/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 08:27:53 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=193</guid>
		<description><![CDATA[&#62; login to copanel
&#62; Go to desired domain
&#62; Go to databases.
&#62; Click on desired database &#8211; Then you will find a link called &#8220;Web Admin&#8221;, click on that. It will redirect you to the PhpMyadmin tool.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=193&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&gt; login to copanel<br />
&gt; Go to desired domain<br />
&gt; Go to databases.<br />
&gt; Click on desired database &#8211; Then you will find a link called &#8220;Web Admin&#8221;, click on that. It will redirect you to the PhpMyadmin tool.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=193&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/08/13/access-phpmyadmin-on-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>Full browser width div in IE</title>
		<link>http://shantronix.wordpress.com/2009/07/28/full-browser-width-div-in-ie/</link>
		<comments>http://shantronix.wordpress.com/2009/07/28/full-browser-width-div-in-ie/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 01:36:56 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[HTML / CSS]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=190</guid>
		<description><![CDATA[To create a div the full width of the browser &#8211; and have it working in properly IE:
html, body {
width: 100%;
margin: 0;
}
#myDiv {
	min-width: 100%;
	}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=190&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To create a div the full width of the browser &#8211; and have it working in properly IE:</p>
<p><code>html, body {<br />
width: 100%;<br />
margin: 0;<br />
}</p>
<p>#myDiv {<br />
	min-width: 100%;<br />
	}</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=190&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/07/28/full-browser-width-div-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS: Sticky Footer</title>
		<link>http://shantronix.wordpress.com/2009/07/08/css-sticky-footer/</link>
		<comments>http://shantronix.wordpress.com/2009/07/08/css-sticky-footer/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:50:23 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[HTML / CSS]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=182</guid>
		<description><![CDATA[To make a footer stick to the bottom of the page, even when there isn&#8217;t enough content for the footer to normally reach the bottom of the page:
NOTE: you must declare 0 margins on everything, also for main layout components use padding, not
vertical margins (top and bottom) to add spacing, else those margins get added [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=182&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To make a footer stick to the bottom of the page, even when there isn&#8217;t enough content for the footer to normally reach the bottom of the page:</p>
<p><strong>NOTE:</strong> you must declare 0 margins on everything, also for main layout components use padding, not<br />
vertical margins (top and bottom) to add spacing, else those margins get added to total height<br />
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser.</p>
<p><strong>MORE INFO:</strong> <a href="http://www.cssstickyfooter.com/">http://www.cssstickyfooter.com/</a></p>
<p><strong>HTML</strong><br />
<img src="http://shantronix.files.wordpress.com/2009/07/stickyfooterhtml.gif?w=700&#038;h=116" alt="stickyfooterhtml" title="stickyfooterhtml" width="700" height="116" class="alignnone size-full wp-image-184" /></p>
<p><strong>CSS</strong><br />
<code>html, body, #wrap {height: 100%;}</p>
<p>body &gt; #wrap {height: auto; min-height: 100%;}</p>
<p>#main {padding-bottom: 150px;}  /* must be same height as the footer */</p>
<p>#footer {position: relative;<br />
	margin-top: -150px; /* negative value of footer height */<br />
	height: 150px;<br />
	clear:both;} </p>
<p>/* CLEAR FIX*/<br />
.clearfix:after {content: ".";<br />
	display: block;<br />
	height: 0;<br />
	clear: both;<br />
	visibility: hidden;}<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 */</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=182&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/07/08/css-sticky-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>

		<media:content url="http://shantronix.files.wordpress.com/2009/07/stickyfooterhtml.gif" medium="image">
			<media:title type="html">stickyfooterhtml</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS: Making a DIV height the same as the browser height</title>
		<link>http://shantronix.wordpress.com/2009/07/05/css-making-a-div-height-the-same-as-the-browser-height/</link>
		<comments>http://shantronix.wordpress.com/2009/07/05/css-making-a-div-height-the-same-as-the-browser-height/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 04:54:49 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[HTML / CSS]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=177</guid>
		<description><![CDATA[html, body {
	height: 100%;
	}
#div {
		min-height: 100%;
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=177&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code>html, body {<br />
	height: 100%;<br />
	}</p>
<p>#div {<br />
		min-height: 100%;<br />
}</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=177&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/07/05/css-making-a-div-height-the-same-as-the-browser-height/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>
	</item>
		<item>
		<title>Horizontal Navigation list with CSS rollovers</title>
		<link>http://shantronix.wordpress.com/2009/07/03/horizontal-lists-with-css-rollovers/</link>
		<comments>http://shantronix.wordpress.com/2009/07/03/horizontal-lists-with-css-rollovers/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 07:09:20 +0000</pubDate>
		<dc:creator>shanDB</dc:creator>
				<category><![CDATA[HTML / CSS]]></category>

		<guid isPermaLink="false">http://shantronix.wordpress.com/?p=170</guid>
		<description><![CDATA[Ok we want to create a horizontal Naviagtion bar, by creating a list containing images for buttons instead of text. Pretty simple stuff.
Here&#8217;s the HTML code:

Here&#8217;s the CSS code (X = your numerical value):
#myList {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#myList li{
	display: inline;
}
#myList span{
	display: none;
}
.item1 a {
	display: block;
	background-repeat: no-repeat;
	background-image: url(../images/sprite.jpg);
	background-position: -Xpx -Xpx;
	width: Xpx;
	height: Xpx;
	float:left;
}
.item1 a:hover {
	width: Xpx;
	height: Xpx;
	background-position: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=170&subd=shantronix&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ok we want to create a horizontal Naviagtion bar, by creating a list containing images for buttons instead of text. Pretty simple stuff.</p>
<p><strong>Here&#8217;s the HTML code:</strong><br />
<img src="http://shantronix.files.wordpress.com/2009/07/list.jpg?w=343&#038;h=59" alt="list" title="list" width="343" height="59" class="alignnone size-full wp-image-172" /></p>
<p><strong>Here&#8217;s the CSS code (X = your numerical value):</strong><code><br />
#myList {<br />
	list-style-type: none;<br />
	padding: 0;<br />
	margin: 0;<br />
}<br />
#myList li{<br />
	display: inline;<br />
}<br />
#myList span{<br />
	display: none;<br />
}<br />
.item1 a {<br />
	display: block;<br />
	background-repeat: no-repeat;<br />
	background-image: url(../images/sprite.jpg);<br />
	background-position: -Xpx -Xpx;<br />
	width: Xpx;<br />
	height: Xpx;<br />
	float:left;<br />
}<br />
.item1 a:hover {<br />
	width: Xpx;<br />
	height: Xpx;<br />
	background-position: -Xpx -Xpx;<br />
}<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shantronix.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shantronix.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shantronix.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shantronix.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shantronix.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shantronix.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shantronix.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shantronix.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shantronix.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shantronix.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shantronix.wordpress.com&blog=4289587&post=170&subd=shantronix&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://shantronix.wordpress.com/2009/07/03/horizontal-lists-with-css-rollovers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4f9829e6f5bb86fa02b5c0f019c019e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shanDB</media:title>
		</media:content>

		<media:content url="http://shantronix.files.wordpress.com/2009/07/list.jpg" medium="image">
			<media:title type="html">list</media:title>
		</media:content>
	</item>
	</channel>
</rss>