Sweeney Todd Template


Read More..

Dark Flower Template





Read More..

Linkin Park - New Divide (OST Transformers 2)


Linkin Park – “New Divide”



Linkin park - New Divide Powered by 4Shared.com Read More..

Scrolling Words On Browsers

Here's a quick view, look at my Blog (top bar on browser), there are scrolling words right? Did you want your blog look like this? So, read my tip.


To make it : you just have to add this code before </head> the tag or put the code in HTML/JavaScript. Copy this code:-


<script type='text/javascript'>
var txt="Your blog name and little description about your site here";
var espera=200;
var refresco=null;
function rotulo_title()
{
document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0); refresco=setTimeout("rotulo_title()",espera);
}
rotulo_title();
</script>

Change the yellow colour with your own words.
Read More..

How To Put Code in Your Post

There is a difficulty in putting CSS code in post. This is an important thing for those who want to teach the visitors who are interested in web development. When you go to Create New Post> Type word <script>, it will be an error. So, don't worry, I will teach you how to hack this problem.


In a post, you cannot enter any code like this "<script>"etc. with the symbol of "<" or ">", right? In order to show the CSS code, what you need is,Simple code.

Simple code is the easiest process to put the CSS code into your post. Firstly, you must go to Simple code and copy your code you desire and paste into Enter Markup. Then click Process. The Simple code generate the code and then you copy the results. Lastly, you paste it into your Post.

Here's the result.



<script type='text/javascript'>

var txt="Your blog name and little description about your site here";

var espera=200;

var refresco=null;

function rotulo_title()

{

document.title=txt;

txt=txt.substring(1,txt.length)+txt.charAt(0); refresco=setTimeout("rotulo_title()",espera);

}

rotulo_title();

</script>

Therefore, you can show the code to your visitors.
Read More..