<?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>Alfe Caesar Lagas</title>
	<atom:link href="http://alfecaesar.byethost10.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://alfecaesar.byethost10.com/blog</link>
	<description>My Personal Blog Site</description>
	<lastBuildDate>Tue, 23 Feb 2010 03:07:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to use @font-face</title>
		<link>http://alfecaesar.byethost10.com/blog/how-to-use-font-face</link>
		<comments>http://alfecaesar.byethost10.com/blog/how-to-use-font-face#comments</comments>
		<pubDate>Tue, 23 Feb 2010 03:05:10 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=52</guid>
		<description><![CDATA[Using @font-face is very simple than using sifr, cufon and other text/font replacement method. All you have to do is to copy the sample code to your stylesheet:

@font-face {
  font-family: "HelveticaNeueLTStd67MediumConde";
  src: url(HelveticaNeueLTStd-MdCn.eot); /* IE */
  src: local('Helvetica Neue LT Std 67 Medium Condensed'), local('HelveticaNeueLTStd-MdCn'),
  url('fonts/HelveticaNeueLTStd-MdCn.woff') format('woff'), url('fonts/HelveticaNeueLTStd-MdCn.ttf') format('truetype');
}

h1{
  font-family: [...]]]></description>
			<content:encoded><![CDATA[<p>Using @font-face is very simple than using sifr, cufon and other text/font replacement method. All you have to do is to copy the sample code to your stylesheet:</p>
<pre>
@font-face {
  font-family: "HelveticaNeueLTStd67MediumConde";
  src: url(HelveticaNeueLTStd-MdCn.eot); /* IE */
  src: local('Helvetica Neue LT Std 67 Medium Condensed'), local('HelveticaNeueLTStd-MdCn'),
  url('fonts/HelveticaNeueLTStd-MdCn.woff') format('woff'), url('fonts/HelveticaNeueLTStd-MdCn.ttf') format('truetype');
}

h1{
  font-family: "HelveticaNeueLTStd67MediumConde"; /* you must enter the font name if you wish to use it */
  font-size: 25px;
}
</pre>
<p>That&#8217;s the code in declaring the @font-face. So all h1 will now have Helvetica Neue font.</p>
<p>Note:</p>
<p>For cross browser issue, not all browsers support font-face so in the meantime IE4+, Safari 3.1, Chrome, Firefox 3.1+ and Opera 10 can support @font-face method.</p>
<p>IE browsers uses another format so be sure to have the IE code inserted.</p>
<pre>
      src: url(HelveticaNeueLTStd-MdCn.eot); /* IE */
</pre>
<p>@font-face can use the local fonts so if the font is already in the computer, it will use the local font rather than using the uploaded font that will take time to load.</p>
<pre>
         src: local('Helvetica Neue LT Std 67 Medium Condensed'), local('HelveticaNeueLTStd-MdCn'),
  url('fonts/HelveticaNeueLTStd-MdCn.woff') format('woff'), url('fonts/HelveticaNeueLTStd-MdCn.ttf') format('truetype');
</pre>
<p>To convert you font to @face-font compatible font you can visit this <a href="http://www.fontsquirrel.com/" target="_blank">link</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/how-to-use-font-face/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preloading Images Using Jquery</title>
		<link>http://alfecaesar.byethost10.com/blog/preloading-images-using-jquery</link>
		<comments>http://alfecaesar.byethost10.com/blog/preloading-images-using-jquery#comments</comments>
		<pubDate>Fri, 19 Feb 2010 07:39:35 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=44</guid>
		<description><![CDATA[Here&#8217;s my code using a jQuery for preloading images.

&#60;script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"&#62;&#60;/script&#62;
&#60;script type="text/javascript" &#62;
jQuery.preloadImages = function()
{
  for(var i = 0; i&#60;arguments.length; i++)
  {
    jQuery("&#60;img&#62;").attr("src", arguments[i]);
  }
}
&#60;/script&#62;
&#60;script type="text/javascript" &#62;
jQuery.preloadImages("image1.jpg", "image2.jpg","image3.jpg");
&#60;/script&#62;

Try this!
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s my code using a jQuery for preloading images.</p>
<pre>
&lt;script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" &gt;
jQuery.preloadImages = function()
{
  for(var i = 0; i&lt;arguments.length; i++)
  {
    jQuery("&lt;img&gt;").attr("src", arguments[i]);
  }
}
&lt;/script&gt;
&lt;script type="text/javascript" &gt;
jQuery.preloadImages("image1.jpg", "image2.jpg","image3.jpg");
&lt;/script&gt;
</pre>
<p>Try this!</p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/preloading-images-using-jquery/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JullyMei Typography</title>
		<link>http://alfecaesar.byethost10.com/blog/jullymei-typography</link>
		<comments>http://alfecaesar.byethost10.com/blog/jullymei-typography#comments</comments>
		<pubDate>Mon, 07 Dec 2009 14:24:49 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[deviantart]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=36</guid>
		<description><![CDATA[
JullyMei Typography by ~alfecaesar on deviantART
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="382" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="id=146003452&amp;width=1337" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://backend.deviantart.com/embed/view.swf" /><embed type="application/x-shockwave-flash" width="450" height="382" src="http://backend.deviantart.com/embed/view.swf" allowscriptaccess="always" flashvars="id=146003452&amp;width=1337"></embed></object><br />
<a href="http://www.deviantart.com/deviation/146003452/">JullyMei Typography</a> by ~<a class="u" href="http://alfecaesar.deviantart.com/">alfecaesar</a> on <a href="http://www.deviantart.com">deviant</a><a href="http://www.deviantart.com">ART</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/jullymei-typography/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding shadow in SIFR 3</title>
		<link>http://alfecaesar.byethost10.com/blog/adding-shadow-in-sifr-3</link>
		<comments>http://alfecaesar.byethost10.com/blog/adding-shadow-in-sifr-3#comments</comments>
		<pubDate>Fri, 27 Nov 2009 01:06:58 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sifr 3]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=33</guid>
		<description><![CDATA[Here&#8217;s a way on how to add a drop shadow for your SIFR 3, im not sure if this works for the lower versions. Use this code inside the sifr -config.js.
sIFR.activate(fontname);
sIFR.replace(fontname, {
  selector: 'h1.ph1',
  css: '.sIFR-root { color:#b81943; font-size:22px; }'
  ,filters: {
        DropShadow: {
  [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a way on how to add a drop shadow for your SIFR 3, im not sure if this works for the lower versions. Use this code inside the sifr -config.js.</p>
<pre>sIFR.activate(fontname);
sIFR.replace(fontname, {
  selector: 'h1.ph1',
  css: '.sIFR-root { color:#b81943; font-size:22px; }'
  ,filters: {
        DropShadow: {
           distance: 1
          ,color: '#000' //drop shadow color
          ,strength: 2
          ,alpha: .3  // for opacity
          ,blurX: 2
          ,blurY: 2
        }
      }
   ,wmode: 'transparent'
});</pre>
<p>If you want to change the angle for the drop show, add this code to the filter:</p>
<pre>,angle: 20</pre>
<p>This is not difficult way but this works.</p>
<p>Try it!</p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/adding-shadow-in-sifr-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer Vector</title>
		<link>http://alfecaesar.byethost10.com/blog/summer-vector</link>
		<comments>http://alfecaesar.byethost10.com/blog/summer-vector#comments</comments>
		<pubDate>Thu, 26 Nov 2009 10:18:06 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[deviantart]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=23</guid>
		<description><![CDATA[One of my design in my deviantArt profile. Check this out.

summer by ~alfecaesar on deviantART
]]></description>
			<content:encoded><![CDATA[<p>One of my design in my <a title="DeviantArt" href="http://alfecaesar.deviantart.com" target="_blank">deviantArt</a> profile. Check this out.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="539" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="id=143757903&amp;width=1337" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://backend.deviantart.com/embed/view.swf" /><embed type="application/x-shockwave-flash" width="450" height="539" src="http://backend.deviantart.com/embed/view.swf" allowscriptaccess="always" flashvars="id=143757903&amp;width=1337"></embed></object><br />
<a href="http://www.deviantart.com/deviation/143757903/">summer</a> by ~<a class="u" href="http://alfecaesar.deviantart.com/">alfecaesar</a> on <a href="http://www.deviantart.com">deviant</a><a href="http://www.deviantart.com">ART</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/summer-vector/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using Jquery noConflict()</title>
		<link>http://alfecaesar.byethost10.com/blog/using-jquery-noconflict</link>
		<comments>http://alfecaesar.byethost10.com/blog/using-jquery-noconflict#comments</comments>
		<pubDate>Thu, 26 Nov 2009 05:54:55 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=13</guid>
		<description><![CDATA[By calling the jQuery.noConflict() function, you can avoid the $-Function error.
Here&#8217;s an example code on how to use this:
&#60;script type="text/javascript" src="prototype.js"&#62;&#60;/script&#62;
&#60;script type="text/javascript" src="jquery.js"&#62;&#60;/script&#62; // declare this 2 script
&#60;script&#62;
var $j = jQuery.noConflict();
$j(document).ready(function(){
     $j('body').intercept('click', {
              '#elementid' : function(){
   [...]]]></description>
			<content:encoded><![CDATA[<p>By calling the <em>jQuery.noConflict() </em>function, you can avoid the $-Function error.</p>
<p>Here&#8217;s an example code on how to use this:</p>
<pre>&lt;script type="text/javascript" src="prototype.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; // declare this 2 script
&lt;script&gt;
var $j = jQuery.noConflict();
$j(document).ready(function(){
     $j('body').intercept('click', {
              '#elementid' : function(){
                       $j('element2id').text('Hellow World');
               }
      });
});
&lt;/script&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/using-jquery-noconflict/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal site design</title>
		<link>http://alfecaesar.byethost10.com/blog/personal-site-design</link>
		<comments>http://alfecaesar.byethost10.com/blog/personal-site-design#comments</comments>
		<pubDate>Sat, 14 Nov 2009 06:47:04 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[personal site]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=7</guid>
		<description><![CDATA[This is my first design for my personal website using Adobe Photoshop CS3.
Here&#8217;s the live site: http://alfecaesarlagas.co.cc/
]]></description>
			<content:encoded><![CDATA[<p>This is my first design for my personal website using Adobe Photoshop CS3.</p>
<div id="attachment_8" class="wp-caption aligncenter" style="width: 550px"><img class="size-full wp-image-8" title="alfecaesar-screenshot-medium" src="http://alfecaesar.byethost10.com/blog/wp-content/uploads/2009/11/alfecaesar-screenshot-medium.jpg" alt="my personal website design" width="540" height="419" /><p class="wp-caption-text">my personal website design</p></div>
<p>Here&#8217;s the live site: <a href="http://alfecaesarlagas.co.cc/">http://alfecaesarlagas.co.cc/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/personal-site-design/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My First Blog Site</title>
		<link>http://alfecaesar.byethost10.com/blog/my-first-blog-site</link>
		<comments>http://alfecaesar.byethost10.com/blog/my-first-blog-site#comments</comments>
		<pubDate>Thu, 12 Nov 2009 00:43:25 +0000</pubDate>
		<dc:creator>alfecaesar</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://alfecaesar.byethost10.com/blog/?p=1</guid>
		<description><![CDATA[Hi!, Im Alfe Caesar Lagas, 20 years old. I am a web developer/programmer and web designer.
This is my first wordpress site. Thanks for WooThemes for the free template.
Thank you for viewing. Have a nice day!
]]></description>
			<content:encoded><![CDATA[<p>Hi!, Im Alfe Caesar Lagas, 20 years old. I am a web developer/programmer and web designer.</p>
<p>This is my first wordpress site. Thanks for <a title="WooThemes" href="http://woothemes.com/" target="_blank">WooThemes</a> for the free template.</p>
<p>Thank you for viewing. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://alfecaesar.byethost10.com/blog/my-first-blog-site/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
