Tuesday, March 25, 2008

A Tag of Friendship

Thanks Lis for sending this tag.


~~Begin Copy~~




I have randomly selected other bloggers below to be tagged and I hope that you will similarly publish this post in your blog. You will have to add your link in the end of the list and tag other bloggers and just keep adding on to the list. (Do not replace, just keep on adding Tag others . This is the easy way and the fastest way to

1. Make your Authority Technorati explode.

2. Increase your Google Page Rank fast.

3. Get more traffic to your blog.

4. Makes more new friends.

5. Build your community

Rules :

1. Start copy from “Begin Copy” until “End Copy” to your blog. (for bloggers paste on the "compose" not the "edit html" part in posting blogs so it will be linked automatically).

2. Put your own blog name and link.

3. Tag your friends as much as you can.

1. Picturing of Life 2. Juliana’s Site,a 3. Hazel-My Life, My Hope, My Future. 4. Jeanne-The Callalily Space 5.My Family is my Life 6. The Simple Life of a Baghag 7. On A Wonderful Day Like Today 8. House Everything, a 9. The Creativity in Me 10. Travel and Photography 11. Yesterday, Today and Tomorrow 12. Nora’s Notes 13. Noras Family Treasures 14. Fil-Oz Blog 15. What A World 16. More on Health 17. Everyday Life 18.Pinaywifespeaks 19. Pinaywife Atbp. 20. Laugh Out Loud 21. Life’s Lessons 22. Kerslyn’s Comfort Zone23. Borski and Nai 24. M A R I K I T, 25. Jan April, 26. Random Thoughts 27.the long journey of my life 28. Life's Journey, 29. Wonderful Life, 30. Gen's Palace, 31. Moments I Treasure, 32. Trails N Life, 33. Life Has Began, 34. Simply Amazing, 35. Amazing Life, 36 Sorrounded Everything, 37. Alot To Offer, 38. Travel Blog, 39. Fascinating Life, 40. Blogger Spider Man, 41. Creative in Me 42. Little Peanut 43. Me and Mine 44. Sugar Magnolias-45. Clark & Butchay's Blog 46. Me, Myself and I ; 47. coffeenchoclate; 48 Lisgold;49. A Piece of Idea 50. StupidWise 51. WriteShy  52. Foods Galore 53. Simply Pets 54. A Day to Savor and Relish 55. Simply SEO 56. Celebrity Smash 57. Simply Blogging 58. Simplycatsy Blogs



---End Copy---

Now, Im sending this to Dante and Catsy.

I signed up for PPP!

Its been six months already when I started blogging for some extra cash to pay my bills but I have heard about pay per post advertising about 2 years ago while I was still with adsense and blogging industry is not yet popular. So, I blog and research on how to make money in blogging. I dig the google on tips on how to earn money in blogging and also asked some bloggers on what blog advertising company is the best. And I have learned that Payperpost is the best among them and they said that in Payperpost comes the big bucks in blogging.


I signed up for payperpost as a blogger when my blog came its third month old, being the required minimum age of a blog. I contacted Customer Love to review my post but my blog got disappoved because of my casino sponsors. So I began creating this blog about blogging for my payperpost entry. And at last, after another three months of waiting, this blog got approved by payperpost. I am very happy that I can now earn something from payperpost and I hope that I will earn a lot that I expected.


Anyway, so much for that boring discussion. I am planning to buy an iMac out of my blog earnings. I hope payperpost can help me.

Animated Title: Simple tip on how to animate your blog title

I found this simple javascript from a blog that will animate our blog's title and I am sharing this to you. I have added some tips on the script to help you modify the code. This code is my modified version. The one I found have 2 declared title variables only and I changed it into 5 for my other blog, A Piece of Idea. I have also changed the variable names (a1 to title1), and function names (b1 to displaytitle1) using english words to easily understand the code.


Later, I will teach you how to install and modify the code but you must first take a grip of what will happen if you install the code to your blog. Visit my other blog for a demo and view the page source to locate the location of the code.


Visit my other blog for a demo.


The Javascript Code:

<script LANGUAGE="JavaScript">
/* Declare your title here */
var title1 = "A Piece of Idea";
var title2 = "Thoughts of a Man!";
var title3 = "Thoughts of a Blogger!";
var title4 = "Thoughts of a Webmaster!";
var title5 = "And thoughts of a Friend!";


/* Set Deley Time */
var delay = 1000;
var firsttitledelay = 2000;


/*Call Function displaytitle1()*/
displaytitle1();


/* Functions */
function displaytitle5()
{
 setTimeout("displaytitle1()",delay);
 document.title = (title5);
}


function displaytitle4()
{
 setTimeout("displaytitle5()",delay);
 document.title = (title4);
}


function displaytitle3()
{
 setTimeout("displaytitle4()",delay);
 document.title = (title3);
}


function displaytitle2()
{
 setTimeout("displaytitle3()",delay);
 document.title = (title2);
}


function displaytitle1()
{
 setTimeout("displaytitle2()",firsttitledelay);
 document.title = (title1);
}
</Script>

Where to put the code?


If you visited the demo and viewed its page source, you will have an idea on where to put the code but if not, here’s what to do.



  • Insert the code on top of <TITLE> tag but in between <HEAD> and </HEAD> tags.

How to add another title or the sixth title?


Modifying the code is not that difficult. All you need to do is to add or declare another variable title. In this case, add the title variable title6 below the title variable title5.



  • var title5 = "And thoughts of a Friend!";

  • var title6 = "Your Sixth Title Here!";

If you add another title, you must not forget to add another function that calls the title. The function itself, when called, displays the title variable you declared. You must add another function above the first function. In this case, add function displaytitle6 above function displaytitle5. (Just copy function displaytitle5 and paste it above the same function.) Then change “setTimeout("displaytitle1()",delay);” of function displaytitle5 to “setTimeout("displaytitle6()",delay);” so that the latter function will next call displaytitle6 function; and change “document.title = (title5);” of function displaytitle6 to “document.title = (title6);” so that the latter function will display variable title6.


Here is what you should see:

function displaytitle6()
{
 setTimeout("displaytitle1()",delay);
 document.title = (title6);
}


function displaytitle5()
{
 setTimeout("displaytitle6()",delay);
 document.title = (title5);
}


That’s all folks. I hope you like it and learned a lot from it. Please bear with my explanation because I am not a good teacher. Comment here if you have some inquiries.


Thank you so much and have a great day!