<?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>Breaking New Grounds</title>
	<atom:link href="http://afterimagewebs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://afterimagewebs.com</link>
	<description>My Journey as Web Developer</description>
	<lastBuildDate>Mon, 30 Apr 2012 16:20:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=284</generator>
		<item>
		<title>How To Select the Last Item of a List in CSS?</title>
		<link>http://afterimagewebs.com/how-to-select-the-last-item-of-a-list-in-css/</link>
		<comments>http://afterimagewebs.com/how-to-select-the-last-item-of-a-list-in-css/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 16:20:42 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=744</guid>
		<description><![CDATA[List sample: &#60;ul id=&#34;footer-menu&#34;&#62; &#60;li&#62;Sample Page&#60;/li&#62; &#60;li&#62;Sample Page2&#60;/li&#62; &#60;/ul&#62; CSS: #footer-menu li:last-of-type { color: green; margin-left: 15px; }]]></description>
			<content:encoded><![CDATA[<p>List sample:</p>
<pre class="wp-code-highlight prettyprint">
&lt;ul id=&quot;footer-menu&quot;&gt;
  &lt;li&gt;Sample Page&lt;/li&gt;
  &lt;li&gt;Sample Page2&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>CSS:</p>
<pre class="wp-code-highlight prettyprint">
#footer-menu li:last-of-type {
    color: green;
    margin-left: 15px;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-select-the-last-item-of-a-list-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus</title>
		<link>http://afterimagewebs.com/focus/</link>
		<comments>http://afterimagewebs.com/focus/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 23:22:53 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=742</guid>
		<description><![CDATA[People think focus means saying yes to the thing you’ve got to focus on. But that’s not what it means at all. It menas saying no to the hundred of other good ideas that there are. You have to pick &#8230; <a href="http://afterimagewebs.com/focus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>People think focus means saying yes to the thing you’ve got to focus on. But that’s not what it means at all. It menas saying no to the hundred of other good ideas that there are. You have to pick carefully. I’m actually as proud of the things we haven’t done as the things I have done. Innovation is saying no to a thousand things.</p>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/focus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where To Go To Create Dummy Text And Image Contents?</title>
		<link>http://afterimagewebs.com/where-to-go-to-create-dummy-text-and-image-contents/</link>
		<comments>http://afterimagewebs.com/where-to-go-to-create-dummy-text-and-image-contents/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 12:11:12 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=736</guid>
		<description><![CDATA[Dynamic Dummy Image Generator http://dummyimage.com/ Ipsum http://html-ipsum.com/ Random Image Generator http://rndimg.com/default.aspx]]></description>
			<content:encoded><![CDATA[<p><strong>Dynamic Dummy Image Generator</strong><br />
<a href="http://dummyimage.com/">http://dummyimage.com/</a></p>
<p><strong><HTML>Ipsum</strong><br />
<a href="http://html-ipsum.com/">http://html-ipsum.com/</a></p>
<p><strong>Random Image Generator</strong><br />
<a href="http://rndimg.com/default.aspx">http://rndimg.com/default.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/where-to-go-to-create-dummy-text-and-image-contents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove Blank Lines in Dreamweaver?</title>
		<link>http://afterimagewebs.com/how-to-remove-blank-lines-in-dreamweaver/</link>
		<comments>http://afterimagewebs.com/how-to-remove-blank-lines-in-dreamweaver/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 06:56:33 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=730</guid>
		<description><![CDATA[Click CTRL + F Select “Current document” in “Find in” (You can also select the folder if you have multiple files) Search in “Source code” Tick “Use regular expression” Type “[\r\n]{2,}” (without quotes) in “Find” Type “\n” (without quotes) in &#8230; <a href="http://afterimagewebs.com/how-to-remove-blank-lines-in-dreamweaver/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ol>
<li>Click CTRL + F</li>
<li>Select “Current document” in “Find in” (You can also select the folder if you have multiple files)</li>
<li>Search in “Source code”</li>
<li>Tick “Use regular expression”</li>
<li>Type “[\r\n]{2,}” (without quotes) in “Find”</li>
<li>Type “\n” (without quotes) in “Replace”</li>
<li>Press “Replace All”</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-remove-blank-lines-in-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I run two Skype accounts on the same computer?</title>
		<link>http://afterimagewebs.com/how-can-i-run-two-skype-accounts-on-the-same-computer/</link>
		<comments>http://afterimagewebs.com/how-can-i-run-two-skype-accounts-on-the-same-computer/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 05:32:08 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=726</guid>
		<description><![CDATA[To use more than one Skype account on the same computer at the same time you need to start a new instance of Skype. From the Windows taskbar, click Start &#62; Run (or press the Windows and R keys on &#8230; <a href="http://afterimagewebs.com/how-can-i-run-two-skype-accounts-on-the-same-computer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To use more than one Skype account on the same computer at the same time you need to start a new instance of Skype.</p>
<ol>
<li>From the Windows taskbar, click <strong>Start</strong> &gt; <strong>Run</strong> (or press the <strong>Windows</strong> and <strong>R</strong> keys on your keyboard at the same time)</li>
<li>In the Run window, enter the following command (include the quotes) and press <strong>OK</strong>:<em>&#8220;C:\Program Files (x86)\Skype\Phone\Skype.exe&#8221; /secondary</em></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-can-i-run-two-skype-accounts-on-the-same-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create an IE-Only Stylesheet?</title>
		<link>http://afterimagewebs.com/how-to-create-an-ie-only-stylesheet/</link>
		<comments>http://afterimagewebs.com/how-to-create-an-ie-only-stylesheet/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 09:54:13 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=713</guid>
		<description><![CDATA[Target ALL VERSIONS of IE, use the code below: &#60;!--[if IE]&#62; &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;all-ie-only.css&#34; /&#62; &#60;![endif]--&#62; Target everything EXCEPT IE, &#60;!--[if !IE]&#62;&#60;!--&#62; &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;not-ie.css&#34; /&#62; &#60;!--&#60;![endif]--&#62;]]></description>
			<content:encoded><![CDATA[<p>Target ALL VERSIONS of IE, use the code below:</p>
<pre class="wp-code-highlight prettyprint">
&lt;!--[if IE]&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;all-ie-only.css&quot; /&gt;
&lt;![endif]--&gt;
</pre>
<p>Target everything EXCEPT IE,</p>
<pre class="wp-code-highlight prettyprint">
&lt;!--[if !IE]&gt;&lt;!--&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;not-ie.css&quot; /&gt;
 &lt;!--&lt;![endif]--&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-create-an-ie-only-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create Exit Pop</title>
		<link>http://afterimagewebs.com/how-to-create-exit-pop/</link>
		<comments>http://afterimagewebs.com/how-to-create-exit-pop/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 07:14:14 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=705</guid>
		<description><![CDATA[Use the sample HTML code below : &#60;!DOCTYPE HTML PUBLIC &#34;-//W#C//DTD HTML 4.01 Transitional//EN&#34;&#62; &#60;html&#62; &#60;head&#62; &#60;script type=&#34;text/javascript&#34;&#62; &#60;!-- var PreventExitPop = false; function ExitPop() { if(PreventExitPop == false) { PreventExitPop=true; document.getElementById(&#34;MainBody&#34;).style.display='none'; document.getElementById(&#34;ExitDive&#34;).style.display='block'; scroll(0, 0); return &#34;EXIT POP!&#34; } } &#8230; <a href="http://afterimagewebs.com/how-to-create-exit-pop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Use the sample HTML code below :</p>
<pre class="wp-code-highlight prettyprint">
&lt;!DOCTYPE HTML PUBLIC &quot;-//W#C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
var PreventExitPop = false;
function ExitPop() {
	if(PreventExitPop == false)	{
		PreventExitPop=true;
		document.getElementById(&quot;MainBody&quot;).style.display='none';
		document.getElementById(&quot;ExitDive&quot;).style.display='block';
		scroll(0, 0);
		return &quot;EXIT POP!&quot;
	}
}
// --&gt;
&lt;/script&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
&lt;!--
window.onbeforeunload = ExitPop;
// --&gt;
&lt;/script&gt;
&lt;/head&gt;
&lt;body &gt;
&lt;div id=&quot;MainBody&quot;&gt; &lt;a href=&quot;http://www.google.com&quot; onClick=&quot;PreventExitPop=true&quot;&gt;This is the link &lt;/a&gt; &lt;/div&gt;
&lt;div id=&quot;ExitDive&quot; style=&quot;display: none; top: 0pt; left: 0pt; width: 100%; height: 500px; position: absolute;&quot;&gt; gfdgdfgdfgdfg gdfg &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-create-exit-pop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Validate a Form Using Dreamweaver?</title>
		<link>http://afterimagewebs.com/how-to-validate-a-form-using-dreamweaver/</link>
		<comments>http://afterimagewebs.com/how-to-validate-a-form-using-dreamweaver/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 06:09:21 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=697</guid>
		<description><![CDATA[1. Open Dreamweaver and create singup form 2. Select Form tag 3. Open tag inspector panel (Press F9) At your panel bar open your tag inspector panel (press F9 or window > Tag Inapector) Select tab &#8220;Behaviors&#8221; Select onSubmit Click &#8230; <a href="http://afterimagewebs.com/how-to-validate-a-form-using-dreamweaver/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>1. Open Dreamweaver and create singup form </strong></p>
<p><strong>2. Select Form tag</strong></p>
<p><strong>3. Open tag inspector panel (Press F9) </strong></p>
<p>At your panel bar open your tag inspector panel (press F9 or window > Tag Inapector)<br />
Select tab &#8220;Behaviors&#8221;<br />
Select onSubmit<br />
Click on a plus sign then select &#8220;Validate Form&#8221;</p>
<p><strong>4. Validate form </strong></p>
<p>In this step in Name fields box select what field you don&#8217;t want to be blank then tick &#8220;Required&#8221; and choose what you accept. </p>
<p><strong>5. Test in your web browser </strong></p>
<p>Press submit button without insert any value in form fields you will see this alert box.</p>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-validate-a-form-using-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to Get Facebook and Twitter Plugins?</title>
		<link>http://afterimagewebs.com/where-to-get-facebook-and-twitter-plugins/</link>
		<comments>http://afterimagewebs.com/where-to-get-facebook-and-twitter-plugins/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 18:24:48 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=693</guid>
		<description><![CDATA[Get it here on these pages: Twitter: http://twitter.com/about/resources/widgets/ Facebook: http://developers.facebook.com/docs/plugins/]]></description>
			<content:encoded><![CDATA[<p>Get it here on these pages:</p>
<p>Twitter:</p>
<pre class="wp-code-highlight prettyprint">http://twitter.com/about/resources/widgets/</pre>
<p>Facebook:</p>
<pre class="wp-code-highlight prettyprint">http://developers.facebook.com/docs/plugins/</pre>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/where-to-get-facebook-and-twitter-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add Sidebar to WordPress?</title>
		<link>http://afterimagewebs.com/how-to-add-sidebar-to-wordpress/</link>
		<comments>http://afterimagewebs.com/how-to-add-sidebar-to-wordpress/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 17:05:25 +0000</pubDate>
		<dc:creator>JS Marasigan</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://afterimagewebs.com/?p=690</guid>
		<description><![CDATA[To call sidebar-page.php: Use: &#60;?php get_sidebar('page'); ?&#62;]]></description>
			<content:encoded><![CDATA[<p>To call sidebar-page.php:</p>
<p>Use:</p>
<pre class="wp-code-highlight prettyprint">&lt;?php get_sidebar('page'); ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://afterimagewebs.com/how-to-add-sidebar-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

