Latest Posts

Create killer menus effortlessly!

Posted by Alexiel on , under , | comments (0)



Create killer menus effortlessly!

CSS Tab Designer is a unique and easy to use software to help you design css-based lists and tabs visually and without any programming knowledge required!

With the CSS Tab Designer, you can :

* Quickly design your list visually
* Choose from a variety of styles/colors (60+ different designs/colors supported). [ Styles Authors / Credits ]
* Generate strict xhtml compliant code



Download CSS Tab Designer (1.35 MB)

Top 20 Pop Love Songs.

Posted by Alexiel on , under , | comments (3)



Here's my Top 20 Pop Love Mellow Songs. Hope you like it.

1. I love you came too late - Joey Mcintyre



2. Until the time is through - Five



3. Excuse my French - 2be3



4. Falling - Ant and Dec



5. If you come back - Blue



5. Guilty -Blue



6. Note to God - Charice Pempengco



7. If You Ever - East 17 and Gabrielle



8. Say - The Corrs



9.The Hardest Days - The Corrs



10. Rescue Me - Ultra



11. I learned from the best - Whitney Houston



12. Take a bow - Madonna



13. Doing just Fine - Boys II Men



14. I could never take the place of your man - Jordan Knight



15. But I do love you - LeAnn Rimes



16. Why - 3t



17. Emotion - Destiny's Child



18. Hands - Jewel




19. Private Emotion - Ricky Martin and Meja



20. Where angels fear to thread - Bryan Adams

How To Earn $100 A Day in Adsense?

Posted by Alexiel on , under , | comments (2)



There this hitch from any angle of the net showing how they make hundreds of dollars in adsense. There may be someone earning such amount but at least make it more realistic.



You too can earn hundred of dollars in just one day! :D How? It's very easy. You don't need to know any web analytic, SEO, or any knowledge web based.

Yes, that's right. Everyone can generate any amount that you like using the Google Adsense Generator. It then generate screen shot like the real Adsense page.

Enjoy!

2-level combo box in blogger.

Posted by Alexiel on , under , | comments (0)



2-level combo box in blogger.

This is a 2-level combo box, both expanding the capacity of the combo and allowing you to organize the links into various categories. Awesome!

Example: Try selecting a link and clicking the "Go there" button. Live Demo

How to add this to blogger?

Go to Layout -> Add gadget -> use Html/Javascript widget, add the code below and save it.



To configure the script, just read the instructions in between lines of the codes. enjoy!

A cool type text script to display messages.

Posted by Alexiel on , under , | comments (0)



A cool type text script to display messages.

Here's a cool typing text script for you. Use Haitham's Typing Text script to display messages in an animated fashion. Unlike similar scripts, both the typing speed and pause between messages can be easily configured. Cool!



How to use in blogger?

Go to Layout -> Add gadget -> Choose the HTML/Javascript widget then add this code code below and save it.

How to remove "Showing post with label...show all posts".

Posted by Alexiel on , under | comments (1)



remove

When you click on your labels or categories this widget will show up. If you wish to remove it follow this simple steps.



Log in to your blogger account, back-up your template, then go to:

Dashboard > Layout > Edit HTML > check Expand Widget Templates box

Find the following part of code:


<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>


Then REPLACE it with:


<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>


Then save your template.

Now open your blog and view any label to see it working.

Host your Javascript codes on blogger with unlimited bandwidth.

Posted by Alexiel on , under , | comments (1)



In most cases, we host our external JS using another third-party hosting services that offers only limited bandwidth. This services can give us a little annoyance because once we reach our bandwidth limit our JS script won't work, thus it makes a theme clutter.

There's a solution to this hitch, thanks to those who contributed. Now here's the trick...

When you add a javascript script instead of linking it, copy the code below:


<script type='text/javascript'>

//<![CDATA[

PASTE THE JAVASCRIPT CODE HERE

//]]>

</script>


Paste it in between your blogger codes:


<body>
<head>

<script type='text/javascript'>

//<![CDATA[

PASTE THE JAVASCRIPT CODE HERE

//]]>

</script>

</head>
</body>


... or it must be in between the <head> </head>. The red colored text which says "
PASTE THE JAVASCRIPT CODE HERE" is where you add the javascript code.


And finally save your changes. The benefit of this trick is that there is no file size limitation, no bandwidth limitations, and as they say it loads faster. Why don't you try and see if it works. Cheers!