My Writings. My Thoughts.

Adding shadow in SIFR 3

// November 26th, 2009 // No Comments » // Articles

Here’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: {
           distance: 1
          ,color: '#000' //drop shadow color
          ,strength: 2
          ,alpha: .3  // for opacity
          ,blurX: 2
          ,blurY: 2
        }
      }
   ,wmode: 'transparent'
});

If you want to change the angle for the drop show, add this code to the filter:

,angle: 20

This is not difficult way but this works.

Try it!

Summer Vector

// November 26th, 2009 // 3 Comments » // Articles, Images

One of my design in my deviantArt profile. Check this out.

summer by ~alfecaesar on deviantART

Using Jquery noConflict()

// November 26th, 2009 // No Comments » // Articles

By calling the jQuery.noConflict() function, you can avoid the $-Function error.

Here’s an example code on how to use this:

<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="jquery.js"></script> // declare this 2 script
<script>
var $j = jQuery.noConflict();
$j(document).ready(function(){
     $j('body').intercept('click', {
              '#elementid' : function(){
                       $j('element2id').text('Hellow World');
               }
      });
});
</script>

Personal site design

// November 14th, 2009 // No Comments » // Images

This is my first design for my personal website using Adobe Photoshop CS3.

my personal website design

my personal website design

My First Blog Site

// November 11th, 2009 // 1 Comment » // Articles

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!